-
Notifications
You must be signed in to change notification settings - Fork 803
http request list clusters
Todd Palino edited this page Dec 1, 2017
·
7 revisions
List Clusters
This endpoint returns a list of the Kafka clusters that Burrow is configured with. The response is the same regardless of which URL path is used.
GET /v3/kafka
None
The response contains a clusters
key whose value is a list of cluster names:
{
"error": false,
"message": "cluster list returned",
"clusters": [
"clustername1",
"clustername2"
],
"request": {
"uri": "/v2/kafka",
"host": "responding.host.example.com",
}
}
- JSON Encoding Error If there is a failure encoding the JSON response, a 500 error will be returned with a JSON response body.