mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-08-19 12:16:26 +00:00
Fix abrt-adaptor config for cpp problems
This modifies pattern for catching cpp problem messages produced by ABRT. Found that not all mentioned messages fit into former pattern. For example following is valid cpp problem message produced by ABRT: Process xxx (bad_binary) crashed in Will::Fail::a() [clone .isra.2]() but doesn't fit former pattern, since it's last part contains whitespaces.
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
{
|
||||
"type": "temporary",
|
||||
"reason": "CCPPCrash",
|
||||
"pattern": "Process \\d+ \\(\\S+\\) crashed in \\S+"
|
||||
"pattern": "Process \\d+ \\(\\S+\\) crashed in .*"
|
||||
},
|
||||
{
|
||||
"type": "temporary",
|
||||
|
||||
Reference in New Issue
Block a user