Package org.infinispan.health
Interface ClusterHealth
-
- All Superinterfaces:
JsonSerialization
public interface ClusterHealth extends JsonSerialization
Cluster health information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getClusterName()
Returns the name of the cluster.HealthStatus
getHealthStatus()
Returns total cluster health.List<String>
getNodeNames()
Returns node names.int
getNumberOfNodes()
Returns the number of nodes in the cluster.-
Methods inherited from interface org.infinispan.commons.dataconversion.internal.JsonSerialization
toJson
-
-
-
-
Method Detail
-
getHealthStatus
HealthStatus getHealthStatus()
Returns total cluster health.
-
getClusterName
String getClusterName()
Returns the name of the cluster.
-
getNumberOfNodes
int getNumberOfNodes()
Returns the number of nodes in the cluster.
-
-