Health check

GET /healthz

Returns 200 if the service is healthy.

Responses

  • 200 application/json

    Service is healthy

    Hide response attribute Show response attribute object
    • status string
  • 503 application/json

    Service unavailable

    Hide response attribute Show response attribute object
    • status string
GET /healthz
curl \
 --request GET 'http://localhost:8080/healthz'
Response examples (200)
{
  "status": "healthy"
}
Response examples (503)
{
  "status": "unhealthy"
}