Verified diagnostic signature
The HTTP server or its upstream failed to complete the request.
Match output from http, understand the likely cause, then continue with sourced, read-only checks.
- Confidence
- high
- Platforms
- linux · macos · windows
- Verified
- 2026-07-24
Recognized output
Signature matched locally
upstream timed outOneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.
Likely causes
What usually produces this signal
- Application error
- Unavailable upstream
- Proxy timeout
- Capacity or dependency failure
Safe next checks
Collect evidence before changing the system
Fetch only the HTTP response headers
curl -I <url>The output matches the expected target and exits without an error.
Break an HTTP request into DNS, TCP, TLS, TTFB, and total time
curl -sS -o /dev/null -w 'status=%{http_code} dns=%{time_namelookup}s tcp=%{time_connect}s tls=%{time_appconnect}s ttfb=%{time_starttransfer}s total=%{time_total}s remote=%{remote_ip}\n' <url>The output matches the expected target and exits without an error.
List listening TCP ports and their processes
lsof -iTCP -sTCP:LISTEN -n -PThe output matches the expected target and exits without an error.