What problem does it solve? Production systems fail silently when teams rely on unstructured console logs and guesswork. This Skill provides concrete patterns for making distributed systems observable so you can debug incidents, measure reliability, and alert on real symptoms instead of noise. ## Core Features & Use Cases - Structured Logging: Set up Pino/Winston JSON logging with severity levels, request correlation via AsyncLocalStorage, and PII/secret redaction rules. - Distributed Tracing & Metrics: Instrument services with OpenTelemetry auto-instrumentation, custom spans, and RED/USE metrics (counters, histograms, gauges). - SLOs, Health Checks & Alerting: Define SLIs/SLOs with error budgets, separate liveness from readiness probes, and design actionable symptom-based alerts. - Use Case: Your Node.js API is experiencing intermittent latency spikes. Use this Skill to add OpenTelemetry tracing across HTTP, Express, PostgreSQL, and Redis, then build P95 latency dashboards and an error-budget-based alert policy. ## Quick Start Set up OpenTelemetry tracing and structured Pino logging with request correlation for my Express API.