Server
Confluence Data Center / / REST API

Cluster information

GET

Get node statuses in a cluster

Returns a paginated list of information about each node in a cluster. Example request URI(s):

  • https://example.com/confluence/rest/api/cluster/nodes
  • https://example.com/confluence/rest/api/cluster/nodes?start=0&limit=10

Request

Query parameters

limit

string

start

string

Responses

Return a list of nodes and their status.

application/json

object
GET/rest/api/cluster/nodes
1 2 3 curl --request GET \ --url 'http://{baseurl}/confluence/rest/api/cluster/nodes' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 { "results": [ { "nodeId": 2154, "jvmStats": {}, "props": {}, "buildStats": {} } ], "totalCount": 2154, "start": 25, "limit": 25, "size": 25, "_links": { "base": "http://localhost:8085/confluence", "context": "confluence", "self": "http://localhost:8085/rest/api/latest/..?limit=25&start=25", "next": "http://localhost:8085/rest/api/latest/..?limit=25&start=50", "prev": "http://localhost:8085/rest/api/latest/..?limit=25&start=0" } }

Rate this page: