v1

latestOpenAPI 3.0.3Apache 2.02026-07-178913.4 KB
flows

Get information on all flows in the tremor runtime.

Get information on all flows in the tremor runtime. It returns an array with 1 item for each flow with information on name, current status and connectors.

get/v1/flows

Response

List of flow informations

aliasstring required

Alias of the flow

status'initializing' | 'running' | 'paused' | 'draining' | 'stopped' | 'failed' required

runtime status of a flow or connector instance

connectorsstring[] required

aliases of connectors in the flow

Example response

[
  {
    "alias": "kafka",
    "status": "initializing",
    "connectors": [
      "consumer1",
      "metrics",
      "out"
    ]
  }
]