Observability Design
Purpose
Design a comprehensive observability strategy covering metrics, logging, tracing, alerting, and SLI/SLO definitions. Produces a monitoring architecture that enables rapid incident detection, diagnosis, and resolution.
Inputs
- System architecture (services, databases, APIs, third-party dependencies)
- Current monitoring setup (existing tools, dashboards, alerts)
- Reliability requirements (SLA commitments, uptime targets)
- Team structure (on-call rotation, escalation paths)
Process
Step 1: Define Observability Pillars
Establish the three pillars for this system:
- Metrics: What to measure — request rate, error rate, latency, saturation, business KPIs
- Logs: What to record — request lifecycle, state changes, errors, audit events
- Traces: What to follow — cross-service request flows, database queries, external API calls
- Map each pillar to specific use cases: debugging, alerting, capacity planning, business intelligence
Step 2: Design Metric Collection
Define the metric taxonomy:
- Application metrics: Request count, error count, latency histograms, queue depth, cache hit rate
- Infrastructure metrics: CPU, memory, disk I/O, network throughput, connection pool utilization
- Business metrics: Sign-ups, conversions, revenue events, feature adoption rates
- Custom instrumentation: Counters (events), gauges (current values), histograms (distributions)
- Specify metric naming conventions, label/tag strategy, and cardinality limits
Step 3: Define Alert Thresholds and Escalation
Design the alerting strategy:
- Warning alerts: Early indicators — elevated error rate, latency creep, resource approaching limits
- Critical alerts: Immediate action required — service down, error rate spike, SLO burn rate exceeded
- Escalation paths: Primary on-call → secondary → engineering lead → incident commander
- Runbook links: Every alert includes a link to its diagnosis and remediation runbook
- Alert fatigue prevention: Grouping, deduplication, silence windows, alert quality reviews
Step 4: Plan Structured Logging
Design the logging architecture:
- Log levels: DEBUG (development only), INFO (normal operations), WARN (unexpected but handled), ERROR (requires attention)
- Structured fields: timestamp, service, request_id, user_id, action, duration_ms, status
- Correlation IDs: Request ID propagation across services for distributed request tracing
- PII redaction: Identify sensitive fields, implement automatic redaction/masking
- Log aggregation: Collection, indexing, retention periods, search capabilities
Step 5: Design Distributed Tracing
Plan request flow visibility:
- Span naming conventions:
service.operation format, consistent across services
- Context propagation: How trace context passes between services (headers, message metadata)
- Sampling strategy: Head-based vs tail-based sampling, sampling rate by endpoint or error status
- Trace enrichment: Adding business context (user tier, feature flag state) to spans
- Critical paths: Which request flows must always be traced (payments, auth, data mutations)
Step 6: Specify Dashboard Requirements
Define dashboard hierarchy:
- Operational dashboards: Service health overview, real-time traffic, error rates, latency percentiles
- Business dashboards: User activity, feature adoption, conversion funnels, revenue metrics
- SLO dashboards: Error budget remaining, burn rate, SLO compliance history
- Incident dashboards: Pre-built investigation views for common failure modes
- Specify dashboard layout, refresh intervals, time range defaults, and access controls
Step 7: Define SLIs/SLOs
Establish reliability targets:
- Availability SLI: Successful requests / total requests (define "successful")
- Latency SLI: Proportion of requests faster than threshold (p50, p95, p99 targets)
- Error rate SLI: Proportion of requests without errors (define "error")
- SLO targets: e.g., 99.9% availability, p95 latency < 200ms, error rate < 0.1%
- Error budgets: Calculate error budget from SLO, define burn rate alerts (fast burn, slow burn)
- SLO review cadence: Weekly error budget check, monthly SLO review, quarterly target adjustment
Output Format
# Observability Design: [Service/Feature Name]
## Observability Architecture
[Application] → [Metrics Agent] → [Metrics Store] → [Dashboards]
↓ ↓
[Structured Logs] → [Log Aggregator] → [Log Search] [Alerts] → [On-call]
↓
[Trace SDK] → [Trace Collector] → [Trace UI]
## Metric Catalog
| Metric Name | Type | Labels | Description | Alert Threshold |
|-------------|------|--------|-------------|-----------------|
| http_requests_total | counter | method, path, status | Request count | N/A |
| http_request_duration_ms | histogram | method, path | Request latency | p95 > 500ms |
| ... | ... | ... | ... | ... |
## Alert Catalog
| Alert Name | Severity | Condition | Duration | Runbook |
|------------|----------|-----------|----------|---------|
| HighErrorRate | critical | error_rate > 5% | 5m | [link] |
| LatencyDegraded | warning | p95 > 500ms | 10m | [link] |
| ... | ... | ... | ... | ... |
## Logging Schema
```json
{
"timestamp": "ISO8601",
"level": "INFO",
"service": "api",
"request_id": "uuid",
"user_id": "string (optional)",
"action": "string",
"duration_ms": "number",
"status": "number",
"message": "string"
}
SLI/SLO Definitions
| SLI |
Measurement |
SLO Target |
Error Budget (30d) |
| Availability |
successful requests / total |
99.9% |
43.2 min downtime |
| Latency |
requests < 200ms / total |
99.0% |
432 min slow |
| Error Rate |
non-error requests / total |
99.9% |
0.1% errors |
Dashboard Specifications
| Dashboard |
Audience |
Key Panels |
Refresh |
| Service Health |
On-call |
Traffic, errors, latency, saturation |
30s |
| SLO Status |
Engineering |
Error budget, burn rate, compliance |
5m |
| Business Metrics |
Product |
Adoption, conversions, revenue |
1h |
## Quality Checks
- [ ] All three observability pillars (metrics, logs, traces) are covered
- [ ] Every alert has a defined severity, threshold, and linked runbook
- [ ] Structured logging schema includes correlation IDs for distributed tracing
- [ ] PII fields are identified with redaction strategy
- [ ] SLIs are measurable and SLO targets are realistic for the service tier
- [ ] Error budgets are calculated with burn rate alert thresholds
- [ ] Dashboard hierarchy covers operational, business, and SLO views
- [ ] Sampling strategy balances trace coverage with storage costs
## Evolution Notes
<!-- Observations appended after each use -->
1---2name: observability-design3description: Monitoring, alerting, and logging strategy with SLI/SLO definitions4---56# Observability Design78## Purpose910Design a comprehensive observability strategy covering metrics, logging, tracing, alerting, and SLI/SLO definitions. Produces a monitoring architecture that enables rapid incident detection, diagnosis, and resolution.1112## Inputs1314- System architecture (services, databases, APIs, third-party dependencies)15- Current monitoring setup (existing tools, dashboards, alerts)16- Reliability requirements (SLA commitments, uptime targets)17- Team structure (on-call rotation, escalation paths)1819## Process2021### Step 1: Define Observability Pillars2223Establish the three pillars for this system:24- **Metrics**: What to measure — request rate, error rate, latency, saturation, business KPIs25- **Logs**: What to record — request lifecycle, state changes, errors, audit events26- **Traces**: What to follow — cross-service request flows, database queries, external API calls27- Map each pillar to specific use cases: debugging, alerting, capacity planning, business intelligence2829### Step 2: Design Metric Collection3031Define the metric taxonomy:32- **Application metrics**: Request count, error count, latency histograms, queue depth, cache hit rate33- **Infrastructure metrics**: CPU, memory, disk I/O, network throughput, connection pool utilization34- **Business metrics**: Sign-ups, conversions, revenue events, feature adoption rates35- **Custom instrumentation**: Counters (events), gauges (current values), histograms (distributions)36- Specify metric naming conventions, label/tag strategy, and cardinality limits3738### Step 3: Define Alert Thresholds and Escalation3940Design the alerting strategy:41- **Warning alerts**: Early indicators — elevated error rate, latency creep, resource approaching limits42- **Critical alerts**: Immediate action required — service down, error rate spike, SLO burn rate exceeded43- **Escalation paths**: Primary on-call → secondary → engineering lead → incident commander44- **Runbook links**: Every alert includes a link to its diagnosis and remediation runbook45- **Alert fatigue prevention**: Grouping, deduplication, silence windows, alert quality reviews4647### Step 4: Plan Structured Logging4849Design the logging architecture:50- **Log levels**: DEBUG (development only), INFO (normal operations), WARN (unexpected but handled), ERROR (requires attention)51- **Structured fields**: timestamp, service, request_id, user_id, action, duration_ms, status52- **Correlation IDs**: Request ID propagation across services for distributed request tracing53- **PII redaction**: Identify sensitive fields, implement automatic redaction/masking54- **Log aggregation**: Collection, indexing, retention periods, search capabilities5556### Step 5: Design Distributed Tracing5758Plan request flow visibility:59- **Span naming conventions**: `service.operation` format, consistent across services60- **Context propagation**: How trace context passes between services (headers, message metadata)61- **Sampling strategy**: Head-based vs tail-based sampling, sampling rate by endpoint or error status62- **Trace enrichment**: Adding business context (user tier, feature flag state) to spans63- **Critical paths**: Which request flows must always be traced (payments, auth, data mutations)6465### Step 6: Specify Dashboard Requirements6667Define dashboard hierarchy:68- **Operational dashboards**: Service health overview, real-time traffic, error rates, latency percentiles69- **Business dashboards**: User activity, feature adoption, conversion funnels, revenue metrics70- **SLO dashboards**: Error budget remaining, burn rate, SLO compliance history71- **Incident dashboards**: Pre-built investigation views for common failure modes72- Specify dashboard layout, refresh intervals, time range defaults, and access controls7374### Step 7: Define SLIs/SLOs7576Establish reliability targets:77- **Availability SLI**: Successful requests / total requests (define "successful")78- **Latency SLI**: Proportion of requests faster than threshold (p50, p95, p99 targets)79- **Error rate SLI**: Proportion of requests without errors (define "error")80- **SLO targets**: e.g., 99.9% availability, p95 latency < 200ms, error rate < 0.1%81- **Error budgets**: Calculate error budget from SLO, define burn rate alerts (fast burn, slow burn)82- **SLO review cadence**: Weekly error budget check, monthly SLO review, quarterly target adjustment8384## Output Format8586```markdown87# Observability Design: [Service/Feature Name]8889## Observability Architecture9091```92[Application] → [Metrics Agent] → [Metrics Store] → [Dashboards]93 ↓ ↓94[Structured Logs] → [Log Aggregator] → [Log Search] [Alerts] → [On-call]95 ↓96[Trace SDK] → [Trace Collector] → [Trace UI]97```9899## Metric Catalog100101| Metric Name | Type | Labels | Description | Alert Threshold |102|-------------|------|--------|-------------|-----------------|103| http_requests_total | counter | method, path, status | Request count | N/A |104| http_request_duration_ms | histogram | method, path | Request latency | p95 > 500ms |105| ... | ... | ... | ... | ... |106107## Alert Catalog108109| Alert Name | Severity | Condition | Duration | Runbook |110|------------|----------|-----------|----------|---------|111| HighErrorRate | critical | error_rate > 5% | 5m | [link] |112| LatencyDegraded | warning | p95 > 500ms | 10m | [link] |113| ... | ... | ... | ... | ... |114115## Logging Schema116117```json118{119 "timestamp": "ISO8601",120 "level": "INFO",121 "service": "api",122 "request_id": "uuid",123 "user_id": "string (optional)",124 "action": "string",125 "duration_ms": "number",126 "status": "number",127 "message": "string"128}129```130131## SLI/SLO Definitions132133| SLI | Measurement | SLO Target | Error Budget (30d) |134|-----|-------------|------------|-------------------|135| Availability | successful requests / total | 99.9% | 43.2 min downtime |136| Latency | requests < 200ms / total | 99.0% | 432 min slow |137| Error Rate | non-error requests / total | 99.9% | 0.1% errors |138139## Dashboard Specifications140141| Dashboard | Audience | Key Panels | Refresh |142|-----------|----------|------------|---------|143| Service Health | On-call | Traffic, errors, latency, saturation | 30s |144| SLO Status | Engineering | Error budget, burn rate, compliance | 5m |145| Business Metrics | Product | Adoption, conversions, revenue | 1h |146```147148## Quality Checks149150- [ ] All three observability pillars (metrics, logs, traces) are covered151- [ ] Every alert has a defined severity, threshold, and linked runbook152- [ ] Structured logging schema includes correlation IDs for distributed tracing153- [ ] PII fields are identified with redaction strategy154- [ ] SLIs are measurable and SLO targets are realistic for the service tier155- [ ] Error budgets are calculated with burn rate alert thresholds156- [ ] Dashboard hierarchy covers operational, business, and SLO views157- [ ] Sampling strategy balances trace coverage with storage costs158159## Evolution Notes160<!-- Observations appended after each use -->