Elasticsearch · Arazzo Workflow
Elasticsearch Cluster Health Triage
Version 1.0.0
Walk cluster health, the cat health and nodes views, cluster stats, and cluster state to triage a degraded cluster.
Provider
Workflows
cluster-health-triage
Collect a full diagnostic picture of an Elasticsearch cluster, cheapest signal first.
Reads cluster health, cat health, cat nodes, cluster stats, and cluster state in escalating order of cost, returning the status, unassigned shard count, node roster, and resource totals needed to triage a degraded cluster.
1
readHealth
clusterHealth
Read the structured cluster health summary. The status colour and the unassigned shard count are usually enough to classify the incident.
2
readCatHealth
catHealth
Read the cat health view for the same signal in the tabular form that gets pasted into an incident channel.
3
readCatNodes
catNodes
Read the node roster to confirm every expected node is still a member of the cluster, which is the most common explanation for unassigned shards.
4
readClusterStats
clusterStats
Pull aggregate cluster statistics for the index count, document totals, and store and heap pressure behind a degraded status.
5
readClusterState
clusterState
Read the full cluster state last. It is the most expensive call in the sweep, so it runs only after the cheaper signals have been captured.