ワンクリックで
observability-and-monitoring
Design logging, metrics, tracing, and alerting that make systems debuggable in production
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Design logging, metrics, tracing, and alerting that make systems debuggable in production
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build UIs that work for all users including keyboard navigation, screen readers, and WCAG 2.2
Design multi-agent systems with robust tool interfaces, state management, and failure handling
Build ML systems with disciplined training, evaluation, deployment, and safety practices
Design APIs that are stable, ergonomic, and evolvable
Design systems at the right scale with explicit trade-off documentation
Design services that are reliable, observable, secure, and maintainable
| name | observability-and-monitoring |
| description | Design logging, metrics, tracing, and alerting that make systems debuggable in production |
| difficulty | senior |
| domains | ["general"] |
A system you cannot observe is a system you cannot debug. Observability is not a dashboard — it is the ability to answer any question about system behavior using existing data, without deploying new code. This skill implements the three pillars (logs, metrics, traces) and the alerts that page you before users notice.
/ship workflowSLI (Service Level Indicator): what you measure — latency, error rate, availability, throughput. SLO (Service Level Objective): the target — "p99 latency < 500ms," "error rate < 0.1%."
Without SLOs, you don't know when to alert.
Implement the four golden signals for every service:
Add business metrics: active users, signups, payments, key conversions.
/healthz — is the service alive?/readyz — is the service ready to accept traffic?Alert on symptoms (user impact), not causes (CPU high):
Do NOT alert on:
Every alert must have a runbook.
Build one dashboard per service with:
For each alert: what does it mean, what is the likely cause, what are the first 3 debugging steps, what is the escalation path?
"We'll add monitoring after we know what's important to monitor" By the time you know what's important to monitor, you've already had the incident that taught you.
"Logs are enough — we don't need metrics" Logs tell you what happened. Metrics tell you what is happening right now at scale.