Health and Readiness
/healthz
curl -i http://localhost:8080/healthz
Returns 200 OK when the process is alive.
/readyz
curl -i http://localhost:8080/readyz
Returns 200 OK during normal operation and 503 during shutdown.
| State | /healthz | /readyz |
|---|---|---|
| Normal operation | 200 | 200 |
| Graceful shutdown | 200 | 503 |
| Process crashed | unavailable | unavailable |
/version
curl -s http://localhost:8080/version
Returns release and compatibility metadata for the running binary. This is useful during pilot deployments, Docker image validation, and support checks.
Example fields include:
{
"version": "0.2.0",
"release_title": "Pilot-Ready OpenAI-Compatible LLM Gateway",
"supported_api_style": "openai_compatible",
"provider_specific_config_blocks": false
}