Get cluster configuration status

GET /v1/cluster_config/status

Get the configuration status of all brokers in a cluster.

Responses

  • 200 application/json

    Cluster configuration status response

    Hide response attributes Show response attributes object
    • config_version integer(int64)

      Configuration version number, for cross referencing with PUT results

    • invalid array[string]

      List of properties with invalid values

    • node_id integer(int64)

      node id

    • restart boolean

      Restart required to apply pending configuration

    • unknown array[string]

      List of properties unknown to this broker

GET /v1/cluster_config/status
curl \
 --request GET 'http://localhost:9644/v1/cluster_config/status'
Response examples (200)
[
  {
    "config_version": 42,
    "invalid": [
      "string"
    ],
    "node_id": 42,
    "restart": true,
    "unknown": [
      "string"
    ]
  }
]