Skip to content

Commit

Permalink
dmesg: Add more default ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
markuslf committed May 23, 2024
1 parent ff905fe commit 3c4ca5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion check-plugins/dmesg/dmesg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ from lib.globals import (STATE_CRIT, STATE_OK, # pylint: disable=C0413
STATE_UNKNOWN, STATE_WARN)

__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
__version__ = '2023112901'
__version__ = '2024052301'

DESCRIPTION = """Checks dmesg for emerg, alert, crit and err messages. Executes `dmesg
--level=emerg,alert,crit,err --ctime `. If you fixed the issues (or just want to
Expand All @@ -45,6 +45,7 @@ DEFAULT_IGNORE = [
' ERST: Failed to get Error Log Address Range.',
' i8042: No controller found',
' Ignoring unsafe software power cap!',
' integrity: Problem loading X.509 certificate -126', # https://access.redhat.com/solutions/7049158
' ioctl error in smb2_get_dfs_refer rc=-5', # https://access.redhat.com/solutions/3496971
' kvm_set_msr_common: MSR_IA32_DEBUGCTLMSR ', # is mostly caused by Windows-VMs on KVM/oVirt
' mokvar: EFI MOKvar config table is not in EFI runtime memory', # https://rockylinux.org/news/rocky-linux-8-5-ga-release/
Expand All @@ -55,6 +56,7 @@ DEFAULT_IGNORE = [
' unhandled rdmsr: ', # https://access.redhat.com/solutions/59299
' unhandled wrmsr: ', # https://bugzilla.redhat.com/show_bug.cgi?id=874627
' vcpu0 disabled perfctr wrmsr', # https://access.redhat.com/solutions/2188061
' Warning: Deprecated Driver is detected', # can be ignored during daily runtime - driver is still supported/running, and it is just a warning
]


Expand Down

0 comments on commit 3c4ca5e

Please sign in to comment.