Back openDesk Edu for a sovereign, open-source education — every vote counts.
Vote nowSave products you love by clicking the heart icon.
Metrics, logs, tracing, and alerting — the monitoring engineer's quick reference
No payment required
One comprehensive cheatsheet covering the monitoring stack from metrics to alerting.
€9.00
# CPU usage per instance
rate(node_cpu_seconds_total{mode="user"}[5m])
# HTTP error rate as percentage
sum(rate(http_requests_total{status=~"5.."}[5m]))
/ sum(rate(http_requests_total[5m])) * 100
# 95th percentile request latency
histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m]))
# Alert: high error rate
http_error_rate > 5