GET /healthcheck/livez
{
"state": "alive"
}
state
:alive
ordead
% curl -XGET http://localhost:8000/healthcheck/livez | jq .
GET /healthcheck/readyz
{
"state": "ready"
}
state
:ready
ornot_ready
Examples
% curl -XGET http://localhost:8000/healthcheck/readyz | jq .