From 6525a2568b1e769c0805fb5399337037967a4e07 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 22 Feb 2023 01:03:12 -0500 Subject: [PATCH] Adjust health delta of load to 50 This is a very bad situation and should be critical. --- node-daemon/plugins/load | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/plugins/load b/node-daemon/plugins/load index 8b0cd2bb..8ab6847a 100644 --- a/node-daemon/plugins/load +++ b/node-daemon/plugins/load @@ -79,7 +79,7 @@ class MonitoringPluginScript(MonitoringPlugin): # Check that the load average is greater or equal to the cpu count if load_average > float(cpu_cores): # Set the health delta to 10 (subtract 10 from the total of 100) - health_delta = 10 + health_delta = 50 # Craft a message that can be used by the clients message = f"Current load is {load_average} out of {cpu_cores} CPU cores"