blob: c00a76fcb8d6b8cf366d39427f204c35b6a9c616 [file] [log] [blame]
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001perf-trace(1)
2==============
3
4NAME
5----
6perf-trace - Read perf.data (created by perf record) and display trace output
7
8SYNOPSIS
9--------
10[verse]
Tom Zanussia6005122009-12-15 02:53:40 -060011'perf trace' {record <script> | report <script> [args] }
Ingo Molnar0a02ad92009-09-11 12:12:54 +020012
13DESCRIPTION
14-----------
15This command reads the input file and displays the trace recorded.
16
Tom Zanussia6005122009-12-15 02:53:40 -060017There are several variants of perf trace:
18
19 'perf trace' to see a detailed trace of the workload that was
20 recorded.
21
22 'perf trace record <script>' to record the events required for 'perf
23 trace report'. <script> is the name displayed in the output of
24 'perf trace --list' i.e. the actual script name minus any language
25 extension.
26
27 'perf trace report <script>' to run and display the results of
28 <script>. <script> is the name displayed in the output of 'perf
29 trace --list' i.e. the actual script name minus any language
30 extension. The perf.data output from a previous run of 'perf trace
31 record <script>' is used and should be present for this command to
32 succeed.
33
Ingo Molnar0a02ad92009-09-11 12:12:54 +020034OPTIONS
35-------
36-D::
37--dump-raw-trace=::
38 Display verbose dump of the trace data.
39
Tom Zanussia6005122009-12-15 02:53:40 -060040-L::
41--Latency=::
42 Show latency attributes (irqs/preemption disabled, etc).
43
44-l::
45--list=::
46 Display a list of available trace scripts.
47
Tom Zanussif526d682010-01-27 02:27:52 -060048-s ['lang']::
Tom Zanussi89fbf0b2009-11-25 01:15:51 -060049--script=::
50 Process trace data with the given script ([lang]:script[.ext]).
Tom Zanussif526d682010-01-27 02:27:52 -060051 If the string 'lang' is specified in place of a script name, a
52 list of supported languages will be displayed instead.
Tom Zanussi89fbf0b2009-11-25 01:15:51 -060053
54-g::
55--gen-script=::
56 Generate perf-trace.[ext] starter script for given language,
57 using current perf.data.
58
Ingo Molnar0a02ad92009-09-11 12:12:54 +020059SEE ALSO
60--------
Tom Zanussi89fbf0b2009-11-25 01:15:51 -060061linkperf:perf-record[1], linkperf:perf-trace-perl[1]