Disallow health less than 0

This commit is contained in:
Joshua Boniface 2023-02-15 16:49:12 -05:00
parent 15ff729f83
commit 1093ca6264
2 changed files with 6 additions and 0 deletions

View File

@ -155,6 +155,9 @@ def getClusterHealth(zkhandler, node_list, vm_list, ceph_osd_list):
elif ceph_health_status == "HEALTH_WARN":
cluster_health -= health_delta_map["ceph_warn"]
if cluster_health < 0:
cluster_health = 0
return cluster_health, messages

View File

@ -366,6 +366,9 @@ class MonitoringInstance(object):
if result is not None:
total_health -= result.health_delta
if total_health < 0:
total_health = 0
if total_health > 90:
health_colour = self.logger.fmt_green
elif total_health > 50: