connections

retrieve the connections to the node

get/connections/{clusterId}/{dataCenterId}/{nodeId}

Path parameters

clusterIdstring required

Id or name of the cluster

dataCenterIdstring required

Id or name of the datacenter

nodeIdstring required

Id or name of the node

Response

connections

idinteger required
data_centersDataCenterConnectionReport[] required— unresolved $ref

Example response

{
  "id": "0",
  "data_centers": [
    {
      "id": "0",
      "nodes": [
        {
          "id": "0",
          "connections": [
            "127.0.0.1:38850",
            "127.0.0.1:38852"
          ],
          "address": "127.0.0.1:38472"
        },
        {
          "id": "1",
          "connections": [
            "127.0.0.1:38472"
          ],
          "address": "127.0.0.2:38472"
        },
        {
          "id": "2",
          "connections": [
            "127.0.0.1:54282"
          ],
          "address": "127.0.0.3:38472"
        }
      ]
    },
    {
      "id": "1",
      "nodes": [
        {
          "id": "0",
          "connections": [
            "127.0.0.1:18432"
          ],
          "address": "127.0.1.1:9042"
        },
        {
          "id": "1",
          "connections": [
            "127.0.0.1:7426"
          ],
          "address": "127.0.1.2:9042"
        }
      ]
    }
  ]
}

Changes