mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 07:37:19 -04:00
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 } ``` |
||
---|---|---|
.. | ||
health.asciidoc |