Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Health

Health check endpoints for monitoring and liveness probes.

GET/healthNo Auth

Full health check including database connectivity and key management status.

Response
{
  "status": "healthy",
  "checks": {
    "database": "ok",
    "jwks": "ok"
  },
  "timestamp": "2026-02-01T10:00:00Z"
}
GET/health/liveNo Auth

Simple liveness check. Returns 200 if the worker is running.

Response
{
  "status": "ok"
}

Usage

  • Use /health/live for Kubernetes/container liveness probes (fast, no dependencies)
  • Use /health for readiness checks (verifies database and JWKS connectivity)