During testing we're finding some kernel oops messages and other key kernel
errors such as irq issues are not triggering our log parsing.
Add those keywords to the list of things to scan for, making such
failures much more visible.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
log_locations = ["/var/log/", "/var/log/dmesg", "/tmp/dmesg_output.log"]
# The keywords that identify error messages in the log files
- errors = ["error", "cannot", "can't", "failed"]
+ errors = ["error", "cannot", "can't", "failed", "---[ cut here ]---", "No irq handler for vector"]
# A list of error messages that should be ignored
ignore_errors = []