A gateway or proxy did not receive a timely response from the upstream server.
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), 10000);
const res = await fetch(url, { signal: controller.signal });
clearTimeout(timeout);Set explicit timeouts on outgoing requests to fail fast.
ObserveOne tracks response times and alerts when upstream latency exceeds thresholds.
Start Monitoring FreeA proxy or gateway received an invalid response from an upstream server.
The server is temporarily unable to handle the request, usually due to maintenance or overload.
The server cannot process the request due to malformed syntax, invalid parameters, or bad encoding.
The request requires authentication. The client must provide valid credentials.
The server understood the request but refuses to authorize it. Authentication won't help — the user lacks permissions.