Retrieve the Zeebe cluster status
GET /status
Retrieves the Topology of a Zeebe cluster from the Gateway. This provides insights into the current status of the cluster
- 200
- 503
successfully retrieved
- application/json
- Schema
- Example (from schema)
Schema
data object
A topology for a Zeebe cluster
clusterSize int32The expected number of brokers (nodes) in the cluster
partitionsCount int32The number of partitions spread across the cluster
replicationFactor int32The number of replicas that should exist of each partition.
gatewayVersion stringThe version of the gateway's software
brokers object[]
The list of brokers that are part of the cluster
Array [address stringThe address of the broker (host:port)
host stringThe hostname of the broker
port int32The port at which the broker can be contacted
version stringThe version of the broker's software
partitions object[]
The list of partitions managed or replicated on this broker
Array [partitionId int32The unique (within a cluster) ID of the partition
role stringPossible values: [
LEADER
,FOLLOWER
,INACTIVE
]The RAFT role of the broker for the partition
leader booleanWhether the broker is leader for the partition, or not
health stringPossible values: [
HEALTHY
,UNHEALTHY
,DEAD
]The health of the partition on the broker
]nodeId int32The unique (within the cluster) ID for the broker
]- error string
{
"data": {
"clusterSize": 0,
"partitionsCount": 0,
"replicationFactor": 0,
"gatewayVersion": "string",
"brokers": [
{
"address": "string",
"host": "string",
"port": 0,
"version": "string",
"partitions": [
{
"partitionId": 0,
"role": "LEADER",
"leader": true,
"health": "HEALTHY"
}
],
"nodeId": 0
}
]
},
"error": "string"
}
Unable to connect to Zeebe cluster