1. Total watchdog nodes in the cluster
2. Total watchdog nodes in the cluster with active membership
- 3. Is VIP is up on current node?
+ 3. Local node's escalation status
4. Leader node name
5. Leader node host
</literallayout>
Nodes required for quorum: 2
Quorum state : QUORUM EXIST
Alive Remote Nodes : 2
- VIP up on local node : NO
+ Local node escalation : NO
Leader Node Name : Linux_host2.localdomain_9992
Leader Host Name : localhost
printf("Alive Remote Nodes : %d\n", cluster->aliveNodeCount);
printf("Nodes required for quorum: %d\n", cluster->nodesRequiredForQuorum);
printf("Quorum state : %s\n", quorumStatus);
- printf("VIP up on local node : %s\n", cluster->escalated ? "YES" : "NO");
+ printf("Local node escalation : %s\n", cluster->escalated ? "YES" : "NO");
printf("Leader Node Name : %s\n", cluster->leaderNodeName);
printf("Leader Host Name : %s\n\n", cluster->leaderHostName);