summaryrefslogtreecommitdiffstats
path: root/src/plugins/abrt-action-analyze-backtrace.txt
blob: 7a3f096ce1bb240fa24c316695b0b842daf29d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
abrt-action-analyze-backtrace(1)
================================

NAME
----
abrt-action-analyze-backtrace - Analyzes C/C++ backtrace, generates
duplication hash, backtrace rating, and identifies crash function
in dump directory DIR.


SYNOPSIS
--------
'abrt-action-analyze-backtrace' [-v] [-d DIR]

DESCRIPTION
-----------
The tool reads a file named 'backtrace' from problem dump directory,
generates duplication hash, backtrace rating, and identifies
crash function. Then it saves this data as new elements 'global_uuid',
'rating', 'crash_function' in this dump directory.

Integration with ABRT events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'abrt-action-analyze-backtrace' can be used as a secondary analyzer,
after backtrace has been generated. The data generated by
'abrt-action-analyze-backtrace' is useful for reporting the crash
to bug databases: rating makes it possible to prevent reporting of bugs
with low quality (non-informative) backtraces, duplication hash
is used to find already filed bugs about similar crashes.

Example usage in abrt_event.conf:

------------
EVENT=analyze analyzer=CCpp
        abrt-action-generate-backtrace || exit $?
        abrt-action-analyze-backtrace
------------

OPTIONS
-------
-d DIR::
   Path to dump directory.

-v::
   Be more verbose. Can be given multiple times.

AUTHORS
-------
* ABRT team

SEE ALSO
--------
abrt-action-generate-backtrace