Loading...
Playbook
Track top error sources and quickly decide on rollback or mitigation.
Top endpoints by 5xx
# Prometheus example
topk(5, sum(rate(http_requests_total{status=~"5.."}[5m])) by (route))Top error codes in logs
# Example with jq
cat app.log | jq -r '.status' | sort | uniq -c | sort -nr | headCheck recent deploys
kubectl rollout history deployment/api