Implements distributed tracing with Jaeger and Tempo to track requests across microservices, debug latency, and analyze request flows for observability.
How this skill is triggered — by the user, by Claude, or both
Slash command
/observability-monitoring:distributed-tracingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implement distributed tracing with Jaeger and Tempo for request flow visibility across microservices.
Implement distributed tracing with Jaeger and Tempo for request flow visibility across microservices.
Track requests across distributed systems to understand latency, dependencies, and failure points.
Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.
import logging
from opentelemetry import trace
logger = logging.getLogger(__name__)
def process_request():
span = trace.get_current_span()
trace_id = span.get_span_context().trace_id
logger.info(
"Processing request",
extra={"trace_id": format(trace_id, '032x')}
)
No traces appearing:
High latency overhead:
prometheus-configuration - For metricsgrafana-dashboards - For visualizationslo-implementation - For latency SLOsnpx claudepluginhub wshobson/agents --plugin observability-monitoringImplements distributed tracing with Jaeger and Tempo for request flow visibility across microservices. Debug latency issues, trace error propagation, and analyze request paths.
Instruments applications with OpenTelemetry for distributed tracing: auto/manual instrumentation, context propagation, sampling, integration with Jaeger or Tempo. Debug latency in distributed systems.