CLUSTER_LEADER is the status for the leader node.
from enum value: CLUSTER_LEADER = 1;
CLUSTER_NODE is the status of a node that is not a part of the storage consensus.
from enum value: CLUSTER_NODE = 4;
CLUSTER_OBSERVER is the status for a non-voter node.
from enum value: CLUSTER_OBSERVER = 3;
CLUSTER_STATUS_UNKNOWN is the default status.
from enum value: CLUSTER_STATUS_UNKNOWN = 0;
CLUSTER_VOTER is the status for a voter node.
from enum value: CLUSTER_VOTER = 2;
Generated using TypeDoc
ClusterStatus is the status of the node in the cluster.
Generated
from enum v1.ClusterStatus