v1

latestOpenAPI 3.0.3Apache 2.02026-07-178913.4 KB
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

all_runningboolean required

flag that is true if all flows are currently in a running state

num_flowsnumber required

number of deployed flows

Example response

{
  "all_running": false,
  "num_flows": 2,
  "flows": {
    "initializing": 1,
    "failed": 1
  }
}