Get cluster nodes status
import requests
url = "https://{FUSION HOST}/api/searchCluster/{id}/nodes"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"baseUrl": "<string>",
"state": "<string>"
}
]Get cluster nodes status
Get the status of each node of the cluster.
GET
/
searchCluster
/
{id}
/
nodes
Get cluster nodes status
import requests
url = "https://{FUSION HOST}/api/searchCluster/{id}/nodes"
response = requests.get(url)
print(response.text)[
{
"name": "<string>",
"baseUrl": "<string>",
"state": "<string>"
}
]Was this page helpful?
⌘I