my own status page
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: catergorize 502 and 504 as down

dunkirk.sh 7107cded 4cd14733

verified
+3
+3
src/health.ts
··· 26 26 if (res.status >= 400 && res.status < 500) { 27 27 return { status: "misconfigured", latency_ms }; 28 28 } 29 + if (res.status === 502 || res.status === 504) { 30 + return { status: "down", latency_ms }; 31 + } 29 32 if (res.status >= 500) { 30 33 return { status: "degraded", latency_ms }; 31 34 }