diff --git a/check-plugins/dmesg/dmesg b/check-plugins/dmesg/dmesg index e3bc4718..bf65371a 100755 --- a/check-plugins/dmesg/dmesg +++ b/check-plugins/dmesg/dmesg @@ -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 @@ -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/ @@ -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 ]