Health

Health Check

Health check endpoint that reports the status of all workers.

Returns HTTP 200 when all workers are healthy, or HTTP 503 if any worker has failed.

The response includes:

  • status: Overall health status ("healthy" or "failed")
  • timestamp: When this health check was performed (ISO 8601 format)
  • workers: Map of worker names to their individual health status

Each worker reports:

  • status: Worker health ("healthy" or "failed")

Note: Error details are not exposed for security reasons. Check application logs for detailed error information.

get/healthz

Response

Service is healthy - all workers are operational.

status'healthy' required
timestampstring date-time required

When this health check was performed

workersobject required

Example response

{
  "status": "healthy",
  "timestamp": "2025-11-11T10:30:00Z"
}

Changes