Liveness probe for the deploy/orchestrator — no auth, no store access. Both the leader and HA standbys answer this so their containers stay healthy while a standby waits for leadership.
GET
/healthz
const url = 'https://example.com/healthz';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/healthzAuthorizations
Section titled “Authorizations”- None
Responses
Section titled “Responses”This process is alive
Media typetext/plain