Show cluster status
Purpose
Shows the cluster status of an Eclipse Amlen server.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen service URI:
http://<admin-endpoint-IP:Port>/ima/v1/service/status/Cluster
Usage NotesĀ®
- Capitalization must be used as shown.
- The status information that is returned shows whether the server is enabled or disabled for cluster membership, and is active or inactive in a cluster.
- The cluster status of the Eclipse Amlen server is also returned as part of the data that is returned from the Eclipse Amlen REST API GET method with the following URI:
http://<admin-endpoint-IP:Port>/ima/v1/service/status
Related REST Administration APIs
Example
Shows the cluster status of the Eclipse Amlen server:curl -X GET http://127.0.0.1:9089/ima/v1/service/status/Cluster
An example response to the GET method:
{
"Version":"v1",
"Cluster": {
"Status": "Inactive",
"Enabled": false
}
}