Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Which API should be used for fetching the cluster health and quorum status for CDOT ?
"Cluster-peer-health-get-iter" doesn't seems to fetch any results. Though the execution status of the API shows passed.
"Cluster-peer-health-get-iter" doesn't seems to fetch any results. Though the execution status of the API shows passed.
Solved! See The Solution
1 ACCEPTED SOLUTION
rohancmr has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"Cluster-peer-health-get-iter" will report the health status of the peer relationship between this cluster and the other clusters it is peered with (peering is a pre-requisite to SnapMirror replication).
In the past I've used cluster_node_get_iter to query cluster-node-info.
There are a number of fields you can query to get what you want such as is-node-healthy, is-node-epsilon and is-node-eligible.
I generally consider this to the be API equivalent of the 'cluster show' command in the ONTAP CLI.
HTH
Richard
2 REPLIES 2
rohancmr has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"Cluster-peer-health-get-iter" will report the health status of the peer relationship between this cluster and the other clusters it is peered with (peering is a pre-requisite to SnapMirror replication).
In the past I've used cluster_node_get_iter to query cluster-node-info.
There are a number of fields you can query to get what you want such as is-node-healthy, is-node-epsilon and is-node-eligible.
I generally consider this to the be API equivalent of the 'cluster show' command in the ONTAP CLI.
HTH
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That works !!!
Than you Richard