Structured runbook guiding on-call engineers through common outage scenarios with explicit escalation gates.
Select a decision path to jump to the relevant troubleshooting branch.
Query failed auth attempts
kubectl logs deploy/auth-proxy --tail=200 | grep -i "status=500"Check for rate limiter failures or upstream timeouts.
Purge CDN auth cache
curl -X POST https://api.nextbase.com/admin/cache/purge -H "Authorization: Bearer $TOKEN" -d '{"surface":"auth"}'Expect 2-3 minute warmup after purge.