Hadrian is experimental alpha software. Do not use in production.
Hadrian

Health

Health check endpoints for monitoring and Kubernetes probes. Use /health for detailed status, /health/live for liveness probes, and /health/ready for readiness probes.

Full health check with subsystem status.

GET
/health
AuthorizationBearer <token>

API key authentication using Bearer token format

In: header

Response Body

application/json

application/json

curl -X GET "https://loading/health"
"healthy"
"healthy"

Kubernetes liveness probe.

GET
/health/live
AuthorizationBearer <token>

API key authentication using Bearer token format

In: header

Response Body

curl -X GET "https://loading/health/live"
Empty

Kubernetes readiness probe.

GET
/health/ready
AuthorizationBearer <token>

API key authentication using Bearer token format

In: header

Response Body

curl -X GET "https://loading/health/ready"
Empty
Empty