From abcf6a4f4bb8ad74c2f6b55c8c4edd3181eed298 Mon Sep 17 00:00:00 2001 From: Julius Milan Date: Thu, 23 Mar 2017 16:15:56 +0100 Subject: [PATCH] Add ABRT adaptor config --- config/abrt-adaptor.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 config/abrt-adaptor.json diff --git a/config/abrt-adaptor.json b/config/abrt-adaptor.json new file mode 100644 index 000000000..cdad01bf7 --- /dev/null +++ b/config/abrt-adaptor.json @@ -0,0 +1,38 @@ +{ + "plugin": "journald", + "pluginConfig": { + "source": "abrt-notification" + }, + "logPath": "/var/log/journal", + "lookback": "5m", + "bufferSize": 10, + "source": "abrt-adaptor", + "conditions": [], + "rules": [ + { + "type": "temporary", + "reason": "CCPPCrash", + "pattern": "Process \\d+ \\(\\S+\\) crashed in \\S+" + }, + { + "type": "temporary", + "reason": "UncaughtException", + "pattern": "Process \\d+ \\(\\S+\\) of user \\d+ encountered an uncaught \\S+ exception" + }, + { + "type": "temporary", + "reason": "XorgCrash", + "pattern": "Display server \\S+ crash in \\S+" + }, + { + "type": "temporary", + "reason": "VMcore", + "pattern": "System encountered a fatal error in \\S+" + }, + { + "type": "temporary", + "reason": "Kerneloops", + "pattern": "System encountered a non-fatal error in \\S+" + } + ] +}