monitoring-observability
Monitoring and observability with OpenTelemetry, Prometheus, Grafana dashboards, and structured logging
npx skills add rohitg00/awesome-claude-code-toolkit --skill monitoring-observability --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Monitoring & Observability ## OpenTelemetry Setup ```typescript import { NodeSDK } from "@opentelemetry/sdk-node"; import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http"; import { OTLPMetricExporter } from "@opentelemetry/exporter-metrics-otlp-http"; import { HttpInstrumentation } from "@opentelemetry/instrumentation-http"; import { PgInstrumentation } from "@opentelemetry/instrumentation-pg"; import { PeriodicExportingMetricReader } from "@opentelemetry/sdk-metrics"; const sdk = new NodeSDK({ serviceName: "order-service", traceExporter: new OTLPTraceExporter({ url: "http://otel-collector:4318/v1/traces", }), metricReader: new PeriodicExportingMetricReader({ exporter: new OTLPMetricExporter({ url: "http://otel-collector:4318/v1/metrics", }), exportIntervalMillis: 15000, }), instrumentations: [ new HttpInstrumentation(), new PgInstrumentation(), ], }); sdk.start(); process.on("SIGTERM", () => sdk.shutdown()); ``` ## Custom Spans and Metrics ```typescript import { trace, metrics, SpanStatusCode } from "@opentelemetry/api"; const tracer = trace.getTracer("order-service"); const meter = metrics.getMeter("order-service"); const orderCounter = meter.createCounter("
- OpenTelemetry Setup
- Custom Spans and Metrics
- Prometheus Metrics
- Structured Logging
- Alerting Rules
- Anti-Patterns
- Checklist
What does the monitoring-observability skill do?
Monitoring and observability with OpenTelemetry, Prometheus, Grafana dashboards, and structured logging
How do I install it?
Run `npx skills add rohitg00/awesome-claude-code-toolkit --skill monitoring-observability --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From rohitg00/awesome-claude-code-toolkit, a repository with 2,438 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.