Skip to content

Commit 86fdd7a

Browse files
committed
dmesg: Add more default ignores
1 parent 33764d8 commit 86fdd7a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

check-plugins/dmesg/README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ Help
5959
Controller not enabled!', ' tsc: Fast TSC calibration
6060
failed', ' unhandled rdmsr: ', ' unhandled wrmsr: ', '
6161
vcpu0 disabled perfctr wrmsr', ' Warning: Deprecated
62-
Driver is detected']
62+
Driver is detected', ' Warning: Unmaintained driver is
63+
detected']
6364
--severity {warn,crit}
6465
Severity for alerting. Default: crit
6566
--test TEST For unit tests. Needs "path-to-stdout-file,path-to-

check-plugins/dmesg/dmesg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ from lib.globals import (STATE_CRIT, STATE_OK, # pylint: disable=C0413
2323
STATE_UNKNOWN, STATE_WARN)
2424

2525
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
26-
__version__ = '2024052301'
26+
__version__ = '2024052302'
2727

2828
DESCRIPTION = """Checks dmesg for emerg, alert, crit and err messages. Executes `dmesg
2929
--level=emerg,alert,crit,err --ctime `. If you fixed the issues (or just want to
@@ -57,6 +57,7 @@ DEFAULT_IGNORE = [
5757
' unhandled wrmsr: ', # https://bugzilla.redhat.com/show_bug.cgi?id=874627
5858
' vcpu0 disabled perfctr wrmsr', # https://access.redhat.com/solutions/2188061
5959
' Warning: Deprecated Driver is detected', # can be ignored during daily runtime - driver is still supported/running, and it is just a warning
60+
' Warning: Unmaintained driver is detected', # can be ignored during daily runtime - driver is still supported/running, and it is just a warning
6061
]
6162

6263

check-plugins/dmesg/icingaweb2-module-director/dmesg.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@
124124
" unhandled rdmsr: ",
125125
" unhandled wrmsr: ",
126126
" vcpu0 disabled perfctr wrmsr",
127-
" Warning: Deprecated Driver is detected"
127+
" Warning: Deprecated Driver is detected",
128+
" Warning: Unmaintained driver is detected"
128129
],
129130
"dmesg_severity": "crit"
130131
},

0 commit comments

Comments
 (0)