Get instance operational status
GET/health
This operation returns information about whether this Unleash instance is healthy and ready to serve requests or not. Typically used by your deployment orchestrator (e.g. Kubernetes, Docker Swarm, Mesos, et al.).
Responses
- 200
- 500
healthCheckSchema
- application/json
- Schema
- Example (from schema)
Schema
health stringrequired
The state this Unleash instance is in. GOOD if everything is ok, BAD if the instance should be restarted
Possible values: [GOOD
, BAD
]
Example:
GOOD
{
"health": "GOOD"
}
healthCheckSchema
- application/json
- Schema
- Example (from schema)
Schema
health stringrequired
The state this Unleash instance is in. GOOD if everything is ok, BAD if the instance should be restarted
Possible values: [GOOD
, BAD
]
Example:
GOOD
{
"health": "GOOD"
}
Loading...