Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

Commit 86ea1a4

Browse files
committed
Edited 020_Distributed_Cluster/10_Cluster_health.asciidoc with Atlas code editor
1 parent 615442b commit 86ea1a4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

020_Distributed_Cluster/10_Cluster_health.asciidoc

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[[cluster-health]]
22
=== Cluster health
33

4-
There are many statistics that can be monitored in an Elasticsearch cluster
5-
but the single most important((("cluster health"))) one is the _cluster health_, which reports a
6-
`status` of either `green`, `yellow` or `red`:
4+
Many statistics can be monitored in an Elasticsearch cluster,
5+
but the single most important((("cluster health"))) one is _cluster health_, which reports a
6+
`status` of either `green`, `yellow`, or `red`:
77

88
[source,js]
99
--------------------------------------------------
1010
GET /_cluster/health
1111
--------------------------------------------------
1212
// SENSE: 020_Distributed_Cluster/10_Cluster_health.json
1313

14-
which, on an empty cluster with no indices, will return something like:
14+
On an empty cluster with no indices, this will return something like the following:
1515

1616
[source,js]
1717
--------------------------------------------------
@@ -31,12 +31,12 @@ which, on an empty cluster with no indices, will return something like:
3131
<1> The `status` field is the one we're most interested in.
3232

3333
The `status` field provides ((("status field")))an overall indication of how the cluster is
34-
functioning. The meaning of the three colors are provided here for reference:
34+
functioning. The meanings of the three colors are provided here for reference:
3535

3636
[horizontal]
37-
`green`:: All primary and replica shards are active.
38-
`yellow`:: All primary shards are active, but not all replica shards are active.
39-
`red`:: Not all primary shards are active.
37+
* `green`:: All primary and replica shards are active.
38+
* `yellow`:: All primary shards are active, but not all replica shards are active.
39+
* `red`:: Not all primary shards are active.
4040

41-
In the rest of this chapter we explain what _primary_ and _replica_ shards are
42-
and explain the practical implications of each of the above colors.
41+
In the rest of this chapter, we explain what _primary_ and _replica_ shards are
42+
and explain the practical implications of each of the preceding colors.

0 commit comments

Comments
 (0)