This repository has been archived by the owner on Feb 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbtparser.1.in
55 lines (51 loc) · 1.76 KB
/
btparser.1.in
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
54
55
.TH btparser "1" "24 May 2010" "@PACKAGE_STRING@"
.SH NAME
btparser \- a backtrace analyzer
.SH SYNOPSIS
.B btparser
[option]... [FILE]...
.SH DESCRIPTION
.I btparser
is a command line tool that analyzes backtraces produced by
GDB and provides their textual representation useful for
crash duplication detection.
By default, btparser prints the backtrace tree created by
parsing the input file.
.SH OPTIONS
.B Basic startup options
.IP "\-V, \-\-version"
Displays version of btparser.
.IP "\-?, \-\-help"
Print a help message describing all of btparser’s command-line options.
.PP
.B Actions
.IP "\-r, \-\-rate"
Print a float number between 0 and 1, representing the quality of the
backtrace.
.IP "\-c, \-\-crash\-function"
Print the name of the function where the program crashed, if it's
successfully detected.
.IP "\-h, \-\-duplicate\-hash"
Print a short, textual representation of the backtrace, useful for
detecting the backtrace duplicates.
.IP "\-s, \-\-distances"
Print Damerau–Levenshtein distances between the backtraces specified on the command
line.
.IP "\-g, \-\-dendrogram"
Cluster backtraces by their distance and print an ASCII representation of the
dendrogram.
.IP "\-l, \-\-clusters=LEVEL"
Print clusters cut from the dendrogram at the specified level.
.PP
.B Additional options
.IP "\-i, \-\-stdin"
Read input from the standard input rather than file.
.IP "\-m, \-\-max\-frames=FRAMES"
When creating optimized backtrace or preparing backtrace for comparison, limit
the number of frames to FRAMES. (default 8)
.IP "\-z, \-\-min\-cluster\-size=SIZE"
When printing clusters, ignore clusters that contain fewer than SIZE objects. (default 2)
.IP "\-d, \-\-debug"
Prints debug information when scanning/parsing the backtrace.
.IP "\-v, \-\-verbose"
Print more output than usual.