Skip to main content
GET
/
health
curl -X GET "http://localhost:5001/health"
{
  "status": "UP"
}
The Health check endpoint reports process health for liveness and readiness probes. It is always available and does not require authentication. Blnk runs the server and worker as separate processes. Each registers its own GET /health endpoint on a different port. Probe both processes in production.
EndpointProcessPort settingDefault URL
GET /healthServerserver.porthttp://localhost:5001/health
GET /healthWorkerqueue.monitoring_porthttp://localhost:5004/health
See Metrics for the same server/worker split on GET /metrics.
Available in version 0.10.3 and later. Public access (no authentication required) in v0.10.4.
curl -X GET "http://localhost:5001/health"
{
  "status": "UP"
}

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.