4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
84 lines
2.6 KiB
Python
84 lines
2.6 KiB
Python
"""Unified Grafana Cloud client composed from mixins."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from integrations.grafana.base import GrafanaClientBase
|
|
from integrations.grafana.config import GrafanaAccountConfig
|
|
from integrations.grafana.loki import LokiMixin
|
|
from integrations.grafana.mimir import MimirMixin
|
|
from integrations.grafana.tempo import TempoMixin
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_grafana_client_cache: dict[str, GrafanaClient] = {}
|
|
|
|
|
|
class GrafanaClient(LokiMixin, TempoMixin, MimirMixin, GrafanaClientBase):
|
|
"""Unified client for querying Grafana Cloud Loki, Tempo, and Mimir."""
|
|
|
|
pass
|
|
|
|
|
|
def get_grafana_client() -> GrafanaClient:
|
|
"""Create a Grafana client from environment variables."""
|
|
import os
|
|
|
|
return get_grafana_client_from_credentials(
|
|
endpoint=os.getenv("GRAFANA_INSTANCE_URL", "https://tracerbio.grafana.net"),
|
|
api_key=os.getenv("GRAFANA_READ_TOKEN", ""),
|
|
account_id="env_default",
|
|
)
|
|
|
|
|
|
def get_grafana_client_from_credentials(
|
|
endpoint: str,
|
|
api_key: str,
|
|
account_id: str = "user_integration",
|
|
username: str = "",
|
|
password: str = "",
|
|
) -> GrafanaClient:
|
|
"""Create a Grafana client from integration credentials."""
|
|
cache_key = f"creds_{account_id}_{endpoint}"
|
|
if cache_key in _grafana_client_cache:
|
|
return _grafana_client_cache[cache_key]
|
|
|
|
config = GrafanaAccountConfig(
|
|
account_id=account_id,
|
|
instance_url=endpoint.rstrip("/"),
|
|
read_token=api_key,
|
|
username=username,
|
|
password=password,
|
|
)
|
|
client = GrafanaClient(config=config)
|
|
|
|
discovered = client.discover_datasource_uids()
|
|
if discovered:
|
|
config = GrafanaAccountConfig(
|
|
account_id=account_id,
|
|
instance_url=endpoint.rstrip("/"),
|
|
read_token=api_key,
|
|
username=username,
|
|
password=password,
|
|
loki_datasource_uid=discovered.get("loki_uid", ""),
|
|
tempo_datasource_uid=discovered.get("tempo_uid", ""),
|
|
mimir_datasource_uid=discovered.get("mimir_uid", ""),
|
|
)
|
|
client = GrafanaClient(config=config)
|
|
logger.info(
|
|
"[grafana] Client ready for account_id=%s with datasource discovery status: loki=%s tempo=%s mimir=%s",
|
|
account_id,
|
|
config.loki_datasource_uid,
|
|
config.tempo_datasource_uid,
|
|
config.mimir_datasource_uid,
|
|
)
|
|
else:
|
|
logger.warning(
|
|
"[grafana] Could not discover datasource UIDs for account_id=%s — queries will fail",
|
|
account_id,
|
|
)
|
|
|
|
_grafana_client_cache[cache_key] = client
|
|
return client
|