← ClaudeAtlas

observabilitylisted

Use for production observability: logs, metrics, traces, health, dashboards, alerts, SLOs; not debug prints.
kreek/consult · ★ 1 · AI & Automation · score 72
Install: claude install-skill kreek/consult
# Observability ## Iron Law `NO USER-REACHABLE SERVICE PATH SHIPS BLIND.` ## When to Use - Logs, metrics, traces, health checks, dashboards, SLOs, alerts, dependency health, incident diagnosis, OpenTelemetry, cardinality, burn-rate alerts. ## When NOT to Use - Local-only scripts or libraries with no operational surface. - Error type design; use `error-handling`. Release sequencing; use `release`. ## Rules 1. Every new user-reachable path emits request, error, and duration (RED) signals, and traces cover its inbound and outbound boundaries. Critical dependencies expose latency, error, timeout, retry, circuit state, and saturation. 2. Logs are structured events with stable names, typed fields, severity, outcome, and trace or correlation ID, using OpenTelemetry semantic conventions where they exist. Levels distinguish expected client failures from operator-actionable errors. Load `references/logging.md` for any logging change. 3. Metric labels are bounded. User IDs, request IDs, and paths go in logs or traces, because cardinality is a production cost. 4. Sensitive data is redacted at the source with a field allowlist (see `security`); collector filtering is defense in depth only. 5. Liveness never depends on external systems. Readiness does. 6. Alerts fire on user impact, SLO burn, or actionable dependency failure, and link to a runbook with action and escalation. Tune noisy alerts by signal, owner, or threshold; never silence them. 7.