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
string
string
Return a list of nodes and their status.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/cluster/nodes' \
--header 'Accept: application/json'
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: