Skip to content
Fuse
Esc
navigateopen⌘Jpreview

Check liveness

Always returns 200 with {"status":"ok"}. Mounted outside the auth + CIDR middleware chain so it works for k8s / load-balancer probes that do not (and shouldn’t) carry Bearer tokens. Intended for kubelet livenessProbe — failing this triggers a pod restart.

GET/health
Responses
200Process is alive.
statusstringrequired
Allowed:ok
Request
curl -X GET "http://localhost:8080/health"
Response
{
  "status": "ok"
}