From 77bb7ac8f771817c4cd2111ab7e5ff529ec27ef7 Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Thu, 10 Mar 2011 18:09:37 +0100 Subject: added XML configuration for analyze steps --- src/plugins/Makefile.am | 4 +++- src/plugins/analyze_LocalGDB.xml | 6 ++++++ src/plugins/analyze_RetraceServer.xml | 13 +++++++++++++ src/plugins/ccpp_events.conf | 4 ++-- 4 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 src/plugins/analyze_LocalGDB.xml create mode 100644 src/plugins/analyze_RetraceServer.xml (limited to 'src/plugins') diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index 4548c67c..ff052b53 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -41,7 +41,9 @@ dist_pluginsconf_DATA = \ eventsdir = $(EVENTS_DIR) dist_events_DATA = \ - report_Bugzilla.xml + report_Bugzilla.xml \ + analyze_LocalGDB.xml \ + analyze_RetraceServer.xml eventsconfdir = $(EVENTS_CONF_DIR) diff --git a/src/plugins/analyze_LocalGDB.xml b/src/plugins/analyze_LocalGDB.xml new file mode 100644 index 00000000..fe9f769a --- /dev/null +++ b/src/plugins/analyze_LocalGDB.xml @@ -0,0 +1,6 @@ + + + Local GNU Debugger + Downloads required debuginfo packages and analyzes + core dump using local gdb + diff --git a/src/plugins/analyze_RetraceServer.xml b/src/plugins/analyze_RetraceServer.xml new file mode 100644 index 00000000..ee28f28d --- /dev/null +++ b/src/plugins/analyze_RetraceServer.xml @@ -0,0 +1,13 @@ + + + Retrace Server + Sends core dumps to remote retrace server for analysis + + + + diff --git a/src/plugins/ccpp_events.conf b/src/plugins/ccpp_events.conf index cbeb8acf..0cb2abe9 100644 --- a/src/plugins/ccpp_events.conf +++ b/src/plugins/ccpp_events.conf @@ -5,8 +5,8 @@ EVENT=post-create analyzer=CCpp abrt-action-analyze-c #TODO: can we still specify additional directories to search for debuginfos, # or was this ability lost with move to python installer? -EVENT=analyze_Local analyzer=CCpp backtrace= abrt-action-install-debuginfo --core="$DUMP_DIR/coredump" -EVENT=analyze_Local analyzer=CCpp backtrace= abrt-action-generate-backtrace +EVENT=analyze_LocalGDB analyzer=CCpp backtrace= abrt-action-install-debuginfo --core="$DUMP_DIR/coredump" +EVENT=analyze_LocalGDB analyzer=CCpp backtrace= abrt-action-generate-backtrace EVENT=analyze_RetraceServer analyzer=CCpp backtrace= abrt-retrace-client batch -k --dir "$DUMP_DIR" # Same as "analyze", but executed when user requests "refresh" in GUI -- cgit