Implements observability solutions including logging, metrics, tracing, OpenTelemetry setup, alerting, and dashboard design. Use when setting up monitoring, logging, or tracing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-framework:observabilityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Discrete events with context.
Discrete events with context.
{
"timestamp": "2024-01-01T12:00:00Z",
"level": "error",
"message": "Failed to process order",
"orderId": "123",
"error": "Payment declined",
"traceId": "abc123"
}
Numeric measurements over time.
http_requests_total{method="GET", status="200"} 1234
http_request_duration_seconds{quantile="0.95"} 0.23
Request flow through services.
Trace: abc123
├── API Gateway (50ms)
│ ├── Auth Service (10ms)
│ └── Order Service (35ms)
│ └── Database (20ms)
import { NodeSDK } from '@opentelemetry/sdk-node';
import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http';
const sdk = new NodeSDK({
traceExporter: new OTLPTraceExporter({
url: 'http://collector:4318/v1/traces',
}),
serviceName: 'my-service',
});
sdk.start();
alert: HighErrorRate
expr: rate(http_requests_total{status=~"5.."}[5m]) > 0.01
for: 5m
labels:
severity: critical
annotations:
summary: "High error rate on {{ $labels.service }}"
description: "Error rate is {{ $value | humanizePercentage }}"
Essential panels:
npx claudepluginhub dralgorhythm/claude-agentic-frameworkProvides observability patterns for metrics, logging, tracing, alerting, dashboards, and infrastructure monitoring in production systems with Prometheus, Grafana, OpenTelemetry.
Generates a complete monitoring setup guide for a service covering golden signals, alerting rules, dashboard layout, log schema, tracing, and observability debt analysis.
Provides monitoring and observability patterns including Prometheus RED/USE metrics, Pino/Winston structured logging, OpenTelemetry tracing, SLO-based alerting, Grafana dashboards, and burn rate alerts. Use when setting up metrics, logs, traces, or alerts for services.