# Observability And Instrumentation > Instrumenta el código para que el comportamiento en producción sea visible y diagnosticable, con logging, métricas, tracing y alertas. Fuente: https://skillsagentes.com/skills/addyosmani/agent-skills/observability-and-instrumentation Markdown: https://skillsagentes.com/skills/addyosmani/agent-skills/observability-and-instrumentation.md Repositorio: https://github.com/addyosmani/agent-skills Autor: addyosmani Licencia: MIT Actualizado: hace 10 días Coste de contexto: 77 tok instalada, 2.8k tok al activarse, 2.8k tok con todos los archivos del bundle Bundle: 1 archivo, 11 KB Permisos que pide: ninguno declarado ## Instalación Un skill son archivos markdown: los mismos archivos valen para cualquier agente y lo único que cambia es el directorio de destino, es decir la bandera `--agent`. Añade `-g` para instalarlo en todos los proyectos de la máquina. ```bash # Claude Code npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent claude-code # Cursor npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent cursor # Codex npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent codex # Gemini CLI npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent gemini # Windsurf npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent windsurf # Cline npx -y skills add addyosmani/agent-skills --skill observability-and-instrumentation --agent cline ``` ## Qué hace - Añade logging estructurado, correlation IDs, métricas RED/USE y tracing distribuido con OpenTelemetry a las funcionalidades - Define preguntas de guardia antes de instrumentar para que cada señal responda a algo concreto - Configura reglas de alerta basadas en síntomas de usuario, con runbook y umbral justificado - Verifica la telemetría provocando fallos en staging y comprobando logs, métricas y trazas ## Cuándo usarla - Al construir cualquier funcionalidad que correrá en producción - Al añadir un nuevo servicio, endpoint, job en background o integración externa - Un incidente de producción tardó demasiado en diagnosticarse - Al configurar o revisar reglas de alerta ## Cuándo no - Diagnosticar un fallo que está ocurriendo ahora mismo (usar debugging-and-error-recovery) - Perfilar y optimizar lentitud ya medida (usar performance-optimization) - Checklist de monitoreo del día de lanzamiento (ver shipping-and-launch) ## Qué la activa - "Añade logging y métricas a este endpoint antes de desplegarlo" - "Ayúdame a definir qué debe monitorear el equipo de guardia para este feature" - "Revisa este PR que añade colas y llamadas externas, ¿falta telemetría?" - "Configura alertas basadas en síntomas para el checkout" ## Antes de instalar - Asume un stack con logger estructurado, prom-client u OpenTelemetry SDK disponibles para instrumentar. ## Archivos - SKILL.md — 11 KB ## SKILL.md Reproducido tal cual desde addyosmani/agent-skills bajo MIT. Esta sección es el documento original y está en inglés. # Observability and Instrumentation ## Overview Code you can't observe is code you can't operate. Observability is the ability to answer "what is the system doing and why?" from the outside, using the telemetry the code emits. Instrumentation is not a post-launch add-on — it's written alongside the feature, the same way tests are. If a feature ships without telemetry, the first user-reported bug becomes archaeology instead of a query. ## When to Use - Building any feature that will run in production - Adding a new service, endpoint, background job, or external integration - A production incident took too long to diagnose ("we couldn't tell what happened") - Setting up or reviewing alerting rules - Reviewing a PR that adds I/O, retries, queues, or cross-service calls **NOT for:** - Diagnosing a failure happening right now — use the `debugging-and-error-recovery` skill (observability is what makes that skill fast next time) - Profiling and optimizing measured slowness — use the `performance-optimization` skill - Launch-day monitoring checklists and rollback triggers — see the `shipping-and-launch` skill; this skill covers the instrumentation that feeds them ## Process ### 1. Define "working" before instrumenting Telemetry without a question is noise. Before adding any instrumentation, write down 2–4 questions an on-call engineer will ask about this feature: ``` FEATURE: checkout payment retry QUESTIONS ON-CALL WILL ASK: 1. What fraction of payments succeed on first attempt vs after retry? 2. When a payment fails permanently, why? (provider error? timeout? validation?) 3. Is the payment provider slower than usual? → Every signal below must help answer one of these. ``` If you can't name the questions, you're not ready to instrument — you'll log everything and learn nothing. ### 2. Pick the right signal for each question | Signal | Answers | Cost profile | Example | |---|---|---|---| | **Structured log** | "What happened in this specific case?" | Per-event; grows with traffic | `payment_failed` with provider error code | | **Metric** | "How often / how fast, in aggregate?" | Fixed per series; cheap to query | p99 latency of provider calls | | **Trace** | "Where did time go across services?" | Per-request; usually sampled | One slow checkout, broken down by hop | Rule of thumb: metrics tell you **that** something is wrong, traces tell you **where**, logs tell you **why**. ### 3. Structured logging Log events, not prose. Every log line is a JSON object with a stable event name and machine-readable fields: ```typescript // BAD: string interpolation — unqueryable, inconsistent logger.info(`Payment ${id} failed for user ${userId} after ${n} retries`); // GOOD: stable event name + structured fields logger.warn({ event: 'payment_failed', paymentId: id, provider: 'stripe', errorCode: err.code, attempt: n, }, 'payment failed'); ``` **Log levels — use them consistently:** | Level | Meaning | On-call action | |---|---|---| | `error` | Invariant broken; someone may need to act | Investigate | | `warn` | Degraded but handled (retry succeeded, fallback used) | Watch for trends | | `info` | Significant business event (order placed, job finished) | None | | `debug` | Diagnostic detail | Off in production by default | **Correlation IDs are mandatory.** Generate (or accept) a request ID at the system boundary and attach it to every log line, span, and outbound call. Without it, you cannot reconstruct a single request from interleaved logs: ```typescript // Express: child logger per request, ID propagated downstream app.use((req, res, next) => { req.id = req.headers['x-request-id'] ?? crypto.randomUUID(); req.log = logger.child({ requestId: req.id }); res.setHeader('x-request-id', req.id); next(); }); ``` **Never log secrets, tokens, passwords, or full PII.** This is a hard rule from the `security-and-hardening` skill — telemetry pipelines are a classic data-leak path. Allowlist fields; don't log whole request bodies. ### 4. Metrics For request-driven services, instrument **RED** on every endpoint and every external dependency: **R**ate (requests/sec), **E**rrors (failure rate), **D**uration (latency histogram, not average). For resources (queues, pools, hosts), use **USE**: **U**tilization, **S**aturation, **E**rrors. As with tracing, the vendor-neutral path is the OpenTelemetry metrics API (same SDK and context as step 5). The example below uses Prometheus' `prom-client` — one common backend choice, not the only one; the RED/USE and cardinality rules are identical either way. ```typescript import { Histogram } from 'prom-client'; const httpDuration = new Histogram({ name: 'http_request_duration_seconds', help: 'HTTP request duration', labelNames: ['method', 'route', 'status_class'], // '2xx', not '200' buckets: [0.05, 0.1, 0.25, 0.5, 1, 2.5, 5], }); ``` **Cardinality is the failure mode.** Every unique label combination is a separate time series. Labels must come from small, fixed sets (route template, status class, provider name). Never use user IDs, raw URLs, error messages, or other unbounded values as labels — that belongs in logs and traces. ``` OK as label: route="/api/tasks/:id" status_class="5xx" provider="stripe" NEVER a label: user_id, email, request_id, full URL, error message text ``` Track averages never, percentiles always: an average hides the 1% of users having a terrible time. Use histograms and read p50/p95/p99. ### 5. Distributed tracing Use OpenTelemetry — it's the vendor-neutral standard, and auto-instrumentation covers HTTP, gRPC, and common DB clients with near-zero code: ```typescript // tracing.ts — must be imported before anything else import { NodeSDK } from '@opentelemetry/sdk-node'; import { getNodeAutoInstrumentations } from '@opentelemetry/auto-instrumentations-node'; const sdk = new NodeSDK({ serviceName: 'checkout-service', instrumentations: [getNodeAutoInstrumentations()], }); sdk.start(); ``` Add manual spans only around meaningful internal units of work (e.g., `applyDiscounts`, `chargeProvider`) and attach the attributes on-call will filter by. Propagate context across every async boundary — HTTP headers, queue message metadata — or the trace dies at the gap. Sample head-based at a low rate by default; keep 100% of errors if your backend supports tail sampling. ### 6. Alerting Alert on **symptoms users feel**, not on causes: ``` SYMPTOM (page-worthy): CAUSE (dashboard, not a page): error rate > 1% for 5 min CPU at 85% p99 latency > 2s one pod restarted queue age > 10 min disk at 70% ``` Cause-based alerts fire when nothing is wrong and miss failures you didn't predict. Symptom-based alerts fire exactly when users are hurt, regardless of the cause. Rules for every alert you create: 1. **It must be actionable.** If the response is "ignore it, it self-heals", delete the alert. 2. **It links to a runbook** — even three lines: what it means, first query to run, escalation path. 3. **It has a threshold and duration** justified by the SLO or by historical data, not by a guess. 4. Use two severities only: **page** (user-facing, act now) and **ticket** (degradation, act this week). A third tier becomes noise that trains people to ignore everything. ### 7. Verify the telemetry itself Instrumentation is code; it can be wrong. Before calling the work done, trigger the paths and look at the actual output: - Force an error in staging → find it in the logs by `requestId`, confirm fields are structured (not `[object Object]`) - Send test traffic → confirm metric series appear with the expected labels and sane values - Follow one request across services in the tracing UI → no broken spans - Fire each new alert once (lower the threshold temporarily) → confirm it reaches the right channel and the runbook link works ## Common Rationalizations | Rationalization | Reality | |---|---| | "I'll add logging after it works" | "After" becomes "after the first incident", which is the most expensive moment to discover you're blind. Instrument as you build. | | "More logs = more observability" | Unstructured noise makes incidents slower, not faster. Three queryable events beat three hundred prose lines. | | "console.log is fine for now" | Unstructured output can't be filtered, correlated, or alerted on. The structured logger costs five extra minutes once. | | "We can just look at the dashboards when something breaks" | Dashboards built without defined questions show you everything except the answer. Start from on-call questions. | | "Alert on everything important, we'll tune later" | A noisy pager trains people to ignore it. The tuning never happens; the missed real page does. | | "User ID as a metric label makes debugging easier" | It also makes your metrics backend fall over. High-cardinality lookups belong in logs and traces. | | "Tracing is overkill for our two services" | Two services already means cross-service latency questions logs can't answer. Auto-instrumentation makes the cost trivial. | ## Red Flags - A feature PR with retries, queues, or external calls and zero new telemetry - Log lines built by string interpolation instead of structured fields - No correlation/request ID — each log line is an orphan - Metrics labeled with user IDs, raw URLs, or error message text (cardinality bomb) - Latency tracked as an average with no percentiles - Alerts that fire daily and get acknowledged without action - Alerts on causes (CPU, memory) paging humans while user-facing error rate is unmonitored - Secrets, tokens, or full request bodies appearing in logs - "It works on my machine" as the only evidence a production feature is healthy ## Verification After instrumenting a feature, confirm: - [ ] The on-call questions for this feature are written down, and each signal maps to one - [ ] All log output is structured (JSON), with stable event names and a correlation ID on every line - [ ] No secrets, tokens, or unredacted PII in any log line (spot-check actual output) - [ ] RED metrics exist for every new endpoint and every external dependency, with bounded label sets - [ ] Latency is a histogram; p95/p99 are queryable - [ ] A single request can be followed end-to-end in the tracing UI without broken spans - [ ] Every new alert is symptom-based, has a runbook link, and was test-fired once - [ ] An induced failure in staging was located via telemetry alone, without reading the source For the at-a-glance version of this list, including the pre-launch instrumentation gate, see `../../references/observability-checklist.md`. ## Dónde encaja - Categoría: [DevOps e infraestructura](https://skillsagentes.com/categorias/devops-infraestructura.md) — Despliegues, contenedores, IaC y flujos de gestión de incidentes. - Creador: [addyosmani](https://skillsagentes.com/creators/addyosmani.md) — 5 skills en el directorio - [Todas las skills](https://skillsagentes.com/skills.md) - [Ranking de instalaciones](https://skillsagentes.com/ranking.md) ## Otras skills del mismo repositorio - [Security And Hardening](https://skillsagentes.com/skills/addyosmani/agent-skills/security-and-hardening.md): Endurece el código contra vulnerabilidades. Úsalo al manejar entrada de usuario, autenticación, almacenamiento de datos, integraciones externas o datos personales (GDPR, CCPA). - [Spec Driven Development](https://skillsagentes.com/skills/addyosmani/agent-skills/spec-driven-development.md): Crea especificaciones antes de programar: úsalo al iniciar un proyecto o cambio sin spec, cuando los requisitos son ambiguos, o cuando un requerimiento debe descomponerse en un mapa de módulos. - [Code Review And Quality](https://skillsagentes.com/skills/addyosmani/agent-skills/code-review-and-quality.md): Realiza revisión de código en múltiples ejes. Úsalo antes de fusionar cualquier cambio, sea escrito por ti, otro agente o una persona, para evaluar la calidad antes de entrar a la rama principal. - [Planning And Task Breakdown](https://skillsagentes.com/skills/addyosmani/agent-skills/planning-and-task-breakdown.md): Divide el trabajo en tareas ordenadas. Úsalo cuando tengas un spec o requisitos claros y necesites descomponer el trabajo en tareas implementables, estimar alcance o paralelizar. - [Using Agent Skills](https://skillsagentes.com/skills/addyosmani/agent-skills/using-agent-skills.md): Descubre e invoca las skills de agente adecuadas; es la meta-skill que gobierna cómo se descubren y aplican todas las demás skills según la fase de desarrollo. ## Skills relacionadas - [Shipping And Launch](https://skillsagentes.com/skills/addyosmani/agent-skills/shipping-and-launch.md): Prepara lanzamientos a producción: checklist previa, monitoreo, rollout escalonado y estrategia de rollback. - [Ci Cd And Automation](https://skillsagentes.com/skills/addyosmani/agent-skills/ci-cd-and-automation.md): Automatiza la configuración de pipelines de CI/CD: úsalo al montar o modificar pipelines de build y despliegue, o al configurar puertas de calidad y test runners en CI. - [Doubt Driven Development](https://skillsagentes.com/skills/addyosmani/agent-skills/doubt-driven-development.md): Somete cada decisión no trivial a una revisión adversarial con contexto fresco antes de darla por válida, cuando la corrección importa más que la velocidad o hay código desconocido o alto riesgo. - [Idea Refine](https://skillsagentes.com/skills/addyosmani/agent-skills/idea-refine.md): Refina ideas en bruto en conceptos claros y accionables mediante pensamiento divergente y convergente estructurado. - [Performance Optimization](https://skillsagentes.com/skills/addyosmani/agent-skills/performance-optimization.md): Optimiza el rendimiento en frontend, backend, consultas y bases de datos. Úsalo cuando haya requisitos de rendimiento, sospecha de regresión, Core Web Vitals bajos, patrones N+1 o cuellos de botella detectados por profiling. --- Skills Agentes · [Índice de páginas en markdown](https://skillsagentes.com/sitemap.md) · [Inicio](https://skillsagentes.com/index.md)