Retrieves information about all follower indices, including parameters and status for each follower index Added in 6.7.0
Path parameters
-
A comma-separated list of index patterns; use
_all
to perform the operation on all indices
GET /{index}/_ccr/info
curl \
-X GET http://api.example.com/{index}/_ccr/info
Response examples (200)
{
"follower_indices": [
{
"follower_index": "string",
"leader_index": "string",
"parameters": {
"max_outstanding_read_requests": 42.0,
"max_outstanding_write_requests": 42.0,
"max_read_request_operation_count": 42.0,
"max_read_request_size": "string",
"max_retry_delay": "string",
"max_write_buffer_count": 42.0,
"max_write_buffer_size": "string",
"max_write_request_operation_count": 42.0,
"max_write_request_size": "string",
"read_poll_timeout": "string"
},
"remote_cluster": "string",
"status": "active"
}
]
}