elasticsearch/docs/reference/health
Andrei Dan b55f5fd77b
Rename the fields reported under details by the disk indicator (#90717)
Currently, we report the count of affected nodes and indices as part of
the disk indicator using a leaky abstraction. Namely we use the status
we assign to nodes internally to nodes based on their disk usage (red,
yellow, green, unknown).

However, these statuses don't have an explicit meaning outside the
implementation details e.g. a red node would probably convey it's a node
experiencing disk issues but not what kind

This proposes being explicit in what we return to our health API users
e.g.
```
"details": {
  "indices_with_readonly_block": 2,
  "nodes_with_enough_disk_space": 0,
  "nodes_with_unknown_disk_status": 0,
  "nodes_over_high_watermark": 0,
  "nodes_over_flood_watermark": 2
}
```
2022-10-10 11:30:03 +01:00
..
health.asciidoc Rename the fields reported under details by the disk indicator (#90717) 2022-10-10 11:30:03 +01:00