Liveness
GET
/health/live
const url = 'https://example.com/health/live';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/health/liveAlias for /health - explicit liveness endpoint.
Some orchestrators prefer /health/live over /health.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example