Health

Maverics exposes a /status endpoint, which can be polled by an external service to determine liveness. A healthy Orchestrator will return an HTTP 200 when a GET request is made to the status endpoint:

curl https://<MAVERICS SERVER>/status
{
    "status": "up"
}

Configuration options

Location

location defines the path that the health endpoint will be served on. If location is unset, the default endpoint of /status is served.

Examples

In this example, the status endpoint will be served on /status-check.

health:
  location: /status-check