cluster/info

Returns information about cluster (Kafka, Zookeeper etc.)

Authorization

None

Request Topic and Payload

Topic

dh/request

Payload Representation

{
    "action": {string},
    "requestId": {object}
}

Payload Parameters

Property NameRequiredTypeDescription
actionYesstringAction name: cluster/info
requestIdNoobjectRequest unique identifier, will be passed back in the response message.

Response Topic and Payload

Topic

dh/response/authenticate@{clientId}

Payload Representation

{
    "action": {string},
    "status": {string},
    "requestId": {object},
    "clusterInfo": {
        "bootstrap.servers": {string},
        "zookeper.connect": {string}
    }
}

Payload Parameters

Property NameTypeDescription
actionstringAction name: cluster/info
statusstringOperation execution status (success or error).
requestIdobjectRequest unique identifier as specified in the request message.
clusterinfoobjectThe information about cluster.
bootstrap.servesstringBootstrap servers address.
zookeeper.connectdatetimeZookeeper servers address.