From 8896c6914ced0cde8237a0cf916f15ad79d27ab8 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 22 Feb 2023 01:01:54 -0500 Subject: [PATCH] Adjust health delta of EDAC Uncorrected to 50 This is a very bad situation and should be critical. --- node-daemon/plugins/edac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/plugins/edac b/node-daemon/plugins/edac index dd2293ba..877f1424 100644 --- a/node-daemon/plugins/edac +++ b/node-daemon/plugins/edac @@ -83,7 +83,7 @@ class MonitoringPluginScript(MonitoringPlugin): for line in stdout.split('\n'): if match(r'^mc[0-9]: csrow', line): if 'Uncorrected' in line: - health_delta = 10 + health_delta = 50 errors.append(' '.join(line.split()[2:])) message += ', '.join(errors)