← ClaudeAtlas

monitoringlisted

Use this skill for Prometheus metrics, Grafana dashboards, alert rules, and ServiceMonitor wiring ONLY -- including instrumenting an endpoint with Prometheus counters or histograms. NOT for logs or traces: structured logging, OpenTelemetry spans, and log-trace correlation belong to observability. NOT for Helm liveness/readiness probes (the project's deployment workflow / infra-pack skills when enabled).
atretyak1985/swarmery · ★ 3 · DevOps & Infrastructure · score 62
Install: claude install-skill atretyak1985/swarmery
# Purpose Define, instrument, and verify Prometheus metrics, Grafana dashboards, and alert rules across the project's platform. Produce metric definitions, dashboard JSON, alert rule YAML, and ServiceMonitor resources that connect instrumentation to Prometheus scraping. **Placeholders used below:** `<mainApp>` = `project.json → mainApp` (the primary application), `<device>` = `project.json → device` (the edge/device service, if the project has one), `<project>` = `project.json → name` snake_cased (the metric-name prefix). Repos and their layout come from `project.json → repos`. # When to use - Adding Prometheus counters, histograms, or gauges to `<mainApp>` or `<device>` code. - Creating or modifying Grafana dashboard JSON for one of the project's services. - Writing or reviewing Prometheus alert rules (PrometheusRule CRDs or rule files). - Wiring a new service for Prometheus scraping via ServiceMonitor in the project's deploy/charts repo. - Investigating why a Prometheus alert fired or a metric spiked. - Reviewing alert coverage for a newly deployed service. **Disambiguation -- monitoring vs observability:** If the task says "instrument" or "add metrics," use this skill. If it says "add logging," "add tracing," or "correlate logs with traces," use `observability`. If investigation starts from a Prometheus alert, start here; if it starts from log search or trace lookup, start with `observability`. # When NOT to use - **Structured logging or distributed tracing** -- use