Get brokers' configurations
List the configuration properties of all brokers (nodes) in the cluster.
For the broker configuration properties of the latest Redpanda version, see Broker Configuration Properties.
GET
/v1/node_config
curl \
--request GET 'http://localhost:9644/v1/node_config'
Response examples (200)
[
{
"advertised_kafka_api": [
{
"name": "string",
"address": "string",
"port": 42
}
],
"data_directory": "/var/lib/redpanda/data",
"crash_loop_limit": 42,
"admin": {
"name": "string",
"address": "string",
"port": 42
},
"advertised_rpc_api": {
"name": "string",
"address": "string",
"port": 42
},
"kafka_api": {
"name": "string",
"address": "string",
"port": 42
},
"developer_mode": true,
"admin_api_doc_dir": "string",
"rpc_server_tls": {
"enabled": true,
"require_client_auth": true
},
"empty_seed_starts_cluster": true,
"memory_allocation_warning_threshold": 42,
"seed_servers": [
{
"name": "string",
"address": "string",
"port": 42
}
],
"upgrade_override_checks": true,
"rack": "string",
"rpc_server": {
"name": "string",
"address": "string",
"port": 42
},
"admin_api_tls": {
"enabled": true,
"cert_file": "string"
},
"node_id": 42,
"cloud_storage_cache_directory": "string",
"kafka_api_tls": {
"name": "string",
"key_file": "string",
"enabled": true
}
}
]