health
Liveness probe
GET
/health/live
const url = 'https://aggregator.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://aggregator.example.com/health/liveReturns 200 as long as the process is up — used by Docker healthcheck.
Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
status
required
string
Example
{ "status": "ok"}
