1. Debugging API Client Retries
Backend EngineerBackground
A backend engineer is writing an HTTP client wrapper and needs to decide which error responses should trigger an automatic retry.
Problem
The engineer needs to quickly identify which 5xx status codes represent transient errors versus permanent failures.
How to use
Select the '5xx Server Error' category filter and search for retry advice to identify codes like 503 Service Unavailable.
Category Filter: 5xx, Search: retryOutcome
The engineer configures the client to retry on 503 (Service Unavailable) and 429 (Too Many Requests) but fail immediately on 500 (Internal Server Error).