You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Cluster stateedit
Get stateedit
To get the basic cluster state, call:
var state = _client.ClusterState();
This returns a IClusterStateResponse
that contains information about the master node, all nodes in the cluster and such.
Get specific part of stateedit
If you only want a specific part, i.e. only information about nodes, you can do the following:
var state = _client.ClusterState(c => c .Metrics(ClusterStateMetric.Nodes) );