Transient outages, upstream faults, and service instability events.
Last reviewed: March 3, 2026|48 mapped errors|Page 4 of 4
Availability errors indicate that service execution failed or upstream dependencies could not complete in time for the current request path.
Provider-specific error pages mapped to this category (48 total). Showing 46-48.
HTTP 508 Loop Detected means the server found an infinite loop while processing recursive or depth-based operations.
HTTP 510 Not Extended is an obsolete status code from an experimental extension model and should not be emitted by modern HTTP APIs.
HTTP 511 Network Authentication Required means the client must authenticate to gain network access, often through a captive portal.
Compare Guide
Use 429 for caller-specific throttling and 503 for service-wide outages, so retry behavior, escalation paths, and incident ownership stay correct.
Compare Guide
Debug 500 vs 502 faster: use 500 for origin failures and 502 for invalid upstream responses at gateways, then route incidents to the right team.
Compare Guide
Fix upstream errors faster: use 502 when a gateway gets an invalid upstream response, and 504 when the upstream service exceeds your timeout budget.
Playbook
Use this playbook to separate invalid upstream responses from upstream wait expiration and deadline exhaustion, and apply timeout budgets, safe retries, and circuit-breaker controls safely.
Playbook
Use this playbook to separate origin-side 500 failures from temporary 503 dependency or capacity outages, then apply safe retry and escalation paths.
Playbook
Triage 500, gRPC UNKNOWN, and cloud InternalError fast: preserve correlation IDs, separate transient provider faults from app bugs, and apply safe retries.
500 indicates internal server failure, 502 indicates invalid upstream response, 503 indicates temporary unavailability, and 504 indicates upstream timeout.
Retries worsen outages when they are unbounded or synchronized, because they increase load on already degraded dependencies.
Sustained normalization of error rate and tail latency under representative traffic, not only short success bursts.