Health Checks
Built-in health check endpoints for container orchestration (Kubernetes, Docker Compose, etc.).Endpoints
| Endpoint | Purpose | Use Case |
|---|---|---|
GET /health | Basic health | Load balancer |
GET /healthz | Detailed health | Kubernetes liveness |
GET /ready | Readiness | Kubernetes readiness |
GET /health
Basic liveness check — confirms the server is responding.
Response (200):
GET /healthz
Detailed liveness check with version info.
Response (200):
GET /ready
Readiness check — confirms all dependencies are available.
Response (200):
Kubernetes Configuration
Docker Compose
Error Responses
If a dependency is down:503 Service Unavailable