Skip to main content
Version: 1.3.0

Liveness check

GET 

/health/live

Returns 200 as long as the HTTP server thread can respond. Use this for Kubernetes liveness probes to determine whether to restart a pod. This endpoint is exempt from authentication so probes can reach it without credentials. A root-level alias at /health/live (outside the /api base path) is also available for GTMs that require probes at well-known root paths.

Responses

Health check result

Schema

    code integerrequired

    Response code, 0 for success

    status stringrequired

    Possible values: [UP, DOWN]

    Aggregate health status

    checks

    object[]

    required

    Per-component check results

  • Array [

  • name stringrequired

    Name of the component being checked

    status stringrequired

    Possible values: [UP, DOWN]

    Status of the component

    details

    object

    Optional diagnostic details about the check result

    property name* string
  • ]

Loading...