Fix incorrect cluster health calculation
This commit is contained in:
parent
4bf80a5913
commit
61b39d0739
|
@ -59,7 +59,7 @@ def getClusterHealthFromFaults(zkhandler):
|
||||||
key=lambda x: (x["health_delta"], x["last_reported"]),
|
key=lambda x: (x["health_delta"], x["last_reported"]),
|
||||||
reverse=True,
|
reverse=True,
|
||||||
):
|
):
|
||||||
cluster_health_value = -fault["health_delta"]
|
cluster_health_value -= fault["health_delta"]
|
||||||
message = {
|
message = {
|
||||||
"id": fault["id"],
|
"id": fault["id"],
|
||||||
"health_delta": fault["health_delta"],
|
"health_delta": fault["health_delta"],
|
||||||
|
|
Loading…
Reference in New Issue