From 09a005d3d7c8d5522bf9324c6fc4dc79aeefc36e 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)