Files
tracer-cloud--opensre/integrations/grafana/tempo.py
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:10:45 +08:00

140 lines
4.3 KiB
Python

"""Tempo trace query mixin for Grafana Cloud client."""
from __future__ import annotations
import logging
from typing import TYPE_CHECKING, Any
import requests
from platform.observability.errors.boundary import report_exception
from platform.observability.otlp_parser import extract_span_attributes, parse_otlp_trace
if TYPE_CHECKING:
from integrations.grafana.base import GrafanaClientBase
logger = logging.getLogger(__name__)
class TempoMixin:
"""Mixin providing Tempo trace query capabilities."""
def query_tempo( # type: ignore[misc]
self: GrafanaClientBase,
service_name: str,
limit: int = 20,
) -> dict[str, Any]:
"""Query Grafana Cloud Tempo for traces.
Args:
service_name: Service name to filter traces
limit: Maximum number of traces to return
Returns:
Dictionary with traces and span details
"""
if not self.is_configured:
return {
"success": False,
"error": f"Grafana client not configured for account '{self.account_id}'",
"traces": [],
}
url = self._build_datasource_url(
self.tempo_datasource_uid,
"/api/search",
)
escaped = service_name.replace("\\", "\\\\").replace('"', '\\"')
params: dict[str, str] = {
"q": f'{{resource.service.name = "{escaped}"}}',
"limit": str(limit),
}
try:
data = self._make_request(url, params=params)
traces = data.get("traces", [])
enriched_traces = []
for trace in traces:
trace_id = trace.get("traceID", "")
span_details = self._get_trace_details(trace_id) # type: ignore[attr-defined]
enriched_traces.append(
{
"trace_id": trace_id,
"root_service": trace.get("rootServiceName", ""),
"duration_ms": trace.get("durationMs", 0),
"span_count": trace.get("spanCount", 0),
"spans": span_details.get("spans", []),
}
)
return {
"success": True,
"traces": enriched_traces,
"total_traces": len(traces),
"service_name": service_name,
"account_id": self.account_id,
}
except Exception as e:
error_msg = str(e)
response_text = ""
if hasattr(e, "response") and e.response is not None:
response_text = e.response.text[:300]
error_msg = f"Tempo query failed: {e.response.status_code}"
return {
"success": False,
"error": error_msg,
"response": response_text,
"traces": [],
}
def _get_trace_details( # type: ignore[misc]
self: GrafanaClientBase,
trace_id: str,
) -> dict[str, Any]:
"""Get detailed span information for a trace.
Args:
trace_id: The trace ID to fetch details for
Returns:
Dictionary with spans list
"""
url = self._build_datasource_url(
self.tempo_datasource_uid,
f"/api/traces/{trace_id}",
)
try:
response = requests.get(
url,
headers=self._get_auth_headers(),
timeout=10,
)
response.raise_for_status()
return {"spans": parse_otlp_trace(response.json())}
except Exception as exc:
report_exception(
exc,
logger=logger,
message="Failed to fetch Tempo trace spans",
severity="warning",
tags={
"surface": "service_client",
"integration": "grafana",
"component": "integrations.grafana.tempo",
},
extras={"trace_id": trace_id},
)
return {"spans": []}
def _extract_span_attributes( # type: ignore[misc]
self: GrafanaClientBase,
span: dict[str, Any],
) -> dict[str, Any]:
"""Extract attributes from a span (delegates to the shared OTLP parser)."""
return extract_span_attributes(span)