Adjust health delta of EDAC Uncorrected to 50

This is a very bad situation and should be critical.
This commit is contained in:
Joshua Boniface 2023-02-22 01:01:54 -05:00
parent 96defebd0b
commit 09a005d3d7
1 changed files with 1 additions and 1 deletions

View File

@ -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)