status
Get's the current runtime status
This endpoint returns the runtime status of the tremor server. It returns a summary of the status of all deployed flows and contains a flag all_running to check if all flows are alive and well.
get/v1/status
Response
The current status of the tremor runtime if all flows are in "running" state
Example response
{
"all_running": false,
"num_flows": 2,
"flows": {
"initializing": 1,
"failed": 1
}
}