v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0172165343.2 KB
ClusterAdmin

Cluster Status

Get information about the current cluster

get/api/v1.cluster-admin.status

Response

cluster_idstring nullable

The unique ID of this cluster.

This value is populated on cluster initialization and will never change.

cluster_namestring nullable

The name of this cluster (as defined in the config)

This value is not replicated and should only be used for debugging.

this_node_idstring required

The unique ID of the node servicing this request

this_node_state'leader' | 'follower' | 'learner' | 'candidate' | 'shutdown' | 'unknown' required
this_node_last_committed_timestampinteger required

The timestamp of the last transaction committed on this node

this_node_last_snapshot_idstring nullable

The last snapshot taken on this node

Example response

{
  "this_node_id": "a1a2a3a4b1b2c1c2d1d2d3d4d5d6d7d8",
  "nodes": [
    {
      "node_id": "a1a2a3a4b1b2c1c2d1d2d3d4d5d6d7d8"
    }
  ]
}
All 72 operations