What problem does it solve? Production features often ship without telemetry, so when incidents occur engineers cannot tell what happened from the available data. This Skill guides you to instrument code alongside the feature so on-call questions can be answered from logs, metrics, and traces instead of guesswork. ## Core Features & Use Cases - Structured Logging: Emits JSON log events with stable event names, correlation IDs, and entry-point fields, while keeping secrets and PII out of log pipelines. - Metrics and Tracing: Applies RED/USE metrics with bounded label cardinality and OpenTelemetry distributed tracing with context propagation across services. - Alerting and Runbooks: Defines symptom-based alerts with thresholds, severities, and linked runbooks, plus a verification pass that test-fires alerts and traces requests end-to-end. - Use Case: When adding a payment retry flow, use this Skill to define the on-call questions, add structured payment_failed log events, RED metrics on the provider calls, and an alert on elevated failure rate with a runbook link. ## Quick Start Instrument my new checkout endpoint with structured logging, RED metrics, OpenTelemetry tracing, and a symptom-based alert with a runbook.