Package org.infinispan.health
Interface ClusterHealth
-
public interface ClusterHealth
Cluster health information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getClusterName()
Returns the name of the cluster.HealthStatus
getHealthStatus()
Returns total cluster health.java.util.List<java.lang.String>
getNodeNames()
Returns node names.int
getNumberOfNodes()
Returns the number of nodes in the cluster.
-
-
-
Method Detail
-
getHealthStatus
HealthStatus getHealthStatus()
Returns total cluster health.
-
getClusterName
java.lang.String getClusterName()
Returns the name of the cluster.
-
getNumberOfNodes
int getNumberOfNodes()
Returns the number of nodes in the cluster.
-
getNodeNames
java.util.List<java.lang.String> getNodeNames()
Returns node names.
-
-