2010-11-16 17:45:39 +00:00
|
|
|
perf-script(1)
|
2010-05-05 14:23:27 +00:00
|
|
|
=============
|
2009-09-11 10:12:54 +00:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2010-11-16 17:45:39 +00:00
|
|
|
perf-script - Read perf.data (created by perf record) and display trace output
|
2009-09-11 10:12:54 +00:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script' [<options>]
|
|
|
|
'perf script' [<options>] record <script> [<record-options>] <command>
|
|
|
|
'perf script' [<options>] report <script> [script-args]
|
|
|
|
'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
|
|
|
|
'perf script' [<options>] <top-script> [script-args]
|
2009-09-11 10:12:54 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This command reads the input file and displays the trace recorded.
|
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
There are several variants of perf script:
|
2009-12-15 08:53:40 +00:00
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script' to see a detailed trace of the workload that was
|
2009-12-15 08:53:40 +00:00
|
|
|
recorded.
|
|
|
|
|
2010-01-27 08:28:03 +00:00
|
|
|
You can also run a set of pre-canned scripts that aggregate and
|
|
|
|
summarize the raw trace data in various ways (the list of scripts is
|
2010-11-16 17:45:39 +00:00
|
|
|
available via 'perf script -l'). The following variants allow you to
|
2010-01-27 08:28:03 +00:00
|
|
|
record and run those scripts:
|
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script record <script> <command>' to record the events required
|
|
|
|
for 'perf script report'. <script> is the name displayed in the
|
|
|
|
output of 'perf script --list' i.e. the actual script name minus any
|
2010-11-10 14:19:35 +00:00
|
|
|
language extension. If <command> is not specified, the events are
|
|
|
|
recorded using the -a (system-wide) 'perf record' option.
|
2009-12-15 08:53:40 +00:00
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script report <script> [args]' to run and display the results
|
2010-11-10 14:19:35 +00:00
|
|
|
of <script>. <script> is the name displayed in the output of 'perf
|
2009-12-15 08:53:40 +00:00
|
|
|
trace --list' i.e. the actual script name minus any language
|
2010-11-16 17:45:39 +00:00
|
|
|
extension. The perf.data output from a previous run of 'perf script
|
2009-12-15 08:53:40 +00:00
|
|
|
record <script>' is used and should be present for this command to
|
2010-11-10 14:19:35 +00:00
|
|
|
succeed. [args] refers to the (mainly optional) args expected by
|
|
|
|
the script.
|
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script <script> <required-script-args> <command>' to both
|
2010-11-10 14:19:35 +00:00
|
|
|
record the events required for <script> and to run the <script>
|
|
|
|
using 'live-mode' i.e. without writing anything to disk. <script>
|
2010-11-16 17:45:39 +00:00
|
|
|
is the name displayed in the output of 'perf script --list' i.e. the
|
2010-11-10 14:19:35 +00:00
|
|
|
actual script name minus any language extension. If <command> is
|
|
|
|
not specified, the events are recorded using the -a (system-wide)
|
|
|
|
'perf record' option. If <script> has any required args, they
|
|
|
|
should be specified before <command>. This mode doesn't allow for
|
|
|
|
optional script args to be specified; if optional script args are
|
2010-11-16 17:45:39 +00:00
|
|
|
desired, they can be specified using separate 'perf script record'
|
|
|
|
and 'perf script report' commands, with the stdout of the record step
|
2010-11-10 14:19:35 +00:00
|
|
|
piped to the stdin of the report script, using the '-o -' and '-i -'
|
|
|
|
options of the corresponding commands.
|
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
'perf script <top-script>' to both record the events required for
|
2010-11-10 14:19:35 +00:00
|
|
|
<top-script> and to run the <top-script> using 'live-mode'
|
|
|
|
i.e. without writing anything to disk. <top-script> is the name
|
2010-11-16 17:45:39 +00:00
|
|
|
displayed in the output of 'perf script --list' i.e. the actual
|
2010-11-10 14:19:35 +00:00
|
|
|
script name minus any language extension; a <top-script> is defined
|
|
|
|
as any script name ending with the string 'top'.
|
|
|
|
|
2010-11-16 17:45:39 +00:00
|
|
|
[<record-options>] can be passed to the record steps of 'perf script
|
2010-11-10 14:19:35 +00:00
|
|
|
record' and 'live-mode' variants; this isn't possible however for
|
2010-11-16 17:45:39 +00:00
|
|
|
<top-script> 'live-mode' or 'perf script report' variants.
|
2009-12-15 08:53:40 +00:00
|
|
|
|
2010-01-27 08:28:03 +00:00
|
|
|
See the 'SEE ALSO' section for links to language-specific
|
|
|
|
information on how to write and run your own trace scripts.
|
|
|
|
|
2009-09-11 10:12:54 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2010-11-10 14:19:35 +00:00
|
|
|
<command>...::
|
|
|
|
Any command you can specify in a shell.
|
|
|
|
|
2009-09-11 10:12:54 +00:00
|
|
|
-D::
|
2010-11-16 17:45:39 +00:00
|
|
|
--dump-raw-script=::
|
2009-09-11 10:12:54 +00:00
|
|
|
Display verbose dump of the trace data.
|
|
|
|
|
2009-12-15 08:53:40 +00:00
|
|
|
-L::
|
|
|
|
--Latency=::
|
|
|
|
Show latency attributes (irqs/preemption disabled, etc).
|
|
|
|
|
|
|
|
-l::
|
|
|
|
--list=::
|
|
|
|
Display a list of available trace scripts.
|
|
|
|
|
2010-01-27 08:27:52 +00:00
|
|
|
-s ['lang']::
|
2009-11-25 07:15:51 +00:00
|
|
|
--script=::
|
|
|
|
Process trace data with the given script ([lang]:script[.ext]).
|
2010-01-27 08:27:52 +00:00
|
|
|
If the string 'lang' is specified in place of a script name, a
|
|
|
|
list of supported languages will be displayed instead.
|
2009-11-25 07:15:51 +00:00
|
|
|
|
|
|
|
-g::
|
|
|
|
--gen-script=::
|
2010-11-16 17:45:39 +00:00
|
|
|
Generate perf-script.[ext] starter script for given language,
|
2009-11-25 07:15:51 +00:00
|
|
|
using current perf.data.
|
|
|
|
|
2010-11-10 14:19:35 +00:00
|
|
|
-a::
|
|
|
|
Force system-wide collection. Scripts run without a <command>
|
|
|
|
normally use -a by default, while scripts run with a <command>
|
|
|
|
normally don't - this option allows the latter to be run in
|
|
|
|
system-wide mode.
|
|
|
|
|
2010-12-01 01:57:22 +00:00
|
|
|
-i::
|
|
|
|
--input=::
|
|
|
|
Input file name.
|
|
|
|
|
|
|
|
-d::
|
|
|
|
--debug-mode::
|
|
|
|
Do various checks like samples ordering and lost events.
|
2010-11-10 14:19:35 +00:00
|
|
|
|
perf script: Support custom field selection for output
Allow a user to select which fields to print to stdout for event data.
Options include comm (command name), tid (thread id), pid (process id),
time (perf timestamp), cpu, event (for event name), and trace (for
trace data).
Default is set to maintain compatibility with current output; this
feature does alter output format slightly -- no '-' between command
and pid/tid.
Thanks to Frederic Weisbecker for detailed suggestions on this approach.
Examples (output compressed)
1. trace, default format
perf record -ga -e sched:sched_switch
perf script
swapper 0 [000] 537.037184: sched_switch: prev_comm=swapper prev_pid=0...
sshd 1675 [000] 537.037309: sched_switch: prev_comm=sshd prev_pid=1675...
netstat 1692 [001] 537.038664: sched_switch: prev_comm=netstat prev_pid=1692...
2. trace, custom format
perf record -ga -e sched:sched_switch
perf script -f comm,pid,time,trace <--- omitting cpu and event name
swapper 0 537.037184: prev_comm=swapper prev_pid=0 prev_prio=120 ...
sshd 1675 537.037309: prev_comm=sshd prev_pid=1675 prev_prio=120 ...
netstat 1692 537.038664: prev_comm=netstat prev_pid=1692 prev_prio=120 ...
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <1299734608-5223-5-git-send-email-daahern@cisco.com>
Signed-off-by: David Ahern <daahern@cisco.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-03-10 05:23:26 +00:00
|
|
|
-f::
|
2011-03-30 18:30:43 +00:00
|
|
|
--fields::
|
perf script: Support custom field selection for output
Allow a user to select which fields to print to stdout for event data.
Options include comm (command name), tid (thread id), pid (process id),
time (perf timestamp), cpu, event (for event name), and trace (for
trace data).
Default is set to maintain compatibility with current output; this
feature does alter output format slightly -- no '-' between command
and pid/tid.
Thanks to Frederic Weisbecker for detailed suggestions on this approach.
Examples (output compressed)
1. trace, default format
perf record -ga -e sched:sched_switch
perf script
swapper 0 [000] 537.037184: sched_switch: prev_comm=swapper prev_pid=0...
sshd 1675 [000] 537.037309: sched_switch: prev_comm=sshd prev_pid=1675...
netstat 1692 [001] 537.038664: sched_switch: prev_comm=netstat prev_pid=1692...
2. trace, custom format
perf record -ga -e sched:sched_switch
perf script -f comm,pid,time,trace <--- omitting cpu and event name
swapper 0 537.037184: prev_comm=swapper prev_pid=0 prev_prio=120 ...
sshd 1675 537.037309: prev_comm=sshd prev_pid=1675 prev_prio=120 ...
netstat 1692 537.038664: prev_comm=netstat prev_pid=1692 prev_prio=120 ...
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <1299734608-5223-5-git-send-email-daahern@cisco.com>
Signed-off-by: David Ahern <daahern@cisco.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-03-10 05:23:26 +00:00
|
|
|
Comma separated list of fields to print. Options are:
|
2011-05-30 19:08:23 +00:00
|
|
|
comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr.
|
|
|
|
Field list can be prepended with the type, trace, sw or hw,
|
2011-03-10 05:23:28 +00:00
|
|
|
to indicate to which event type the field list applies.
|
2011-05-27 20:28:43 +00:00
|
|
|
e.g., -f sw:comm,tid,time,ip,sym and -f trace:time,cpu,trace
|
2011-03-10 05:23:27 +00:00
|
|
|
|
2011-03-30 18:30:43 +00:00
|
|
|
perf script -f <fields>
|
|
|
|
|
|
|
|
is equivalent to:
|
|
|
|
|
|
|
|
perf script -f trace:<fields> -f sw:<fields> -f hw:<fields>
|
|
|
|
|
|
|
|
i.e., the specified fields apply to all event types if the type string
|
|
|
|
is not given.
|
|
|
|
|
|
|
|
The arguments are processed in the order received. A later usage can
|
|
|
|
reset a prior request. e.g.:
|
|
|
|
|
2011-05-27 20:28:43 +00:00
|
|
|
-f trace: -f comm,tid,time,ip,sym
|
2011-03-30 18:30:43 +00:00
|
|
|
|
|
|
|
The first -f suppresses trace events (field list is ""), but then the
|
2011-05-27 20:28:43 +00:00
|
|
|
second invocation sets the fields to comm,tid,time,ip,sym. In this case a
|
2011-03-30 18:30:43 +00:00
|
|
|
warning is given to the user:
|
|
|
|
|
|
|
|
"Overriding previous field request for all events."
|
|
|
|
|
|
|
|
Alternativey, consider the order:
|
|
|
|
|
2011-05-27 20:28:43 +00:00
|
|
|
-f comm,tid,time,ip,sym -f trace:
|
2011-03-30 18:30:43 +00:00
|
|
|
|
|
|
|
The first -f sets the fields for all events and the second -f
|
|
|
|
suppresses trace events. The user is given a warning message about
|
|
|
|
the override, and the result of the above is that only S/W and H/W
|
|
|
|
events are displayed with the given fields.
|
|
|
|
|
|
|
|
For the 'wildcard' option if a user selected field is invalid for an
|
|
|
|
event type, a message is displayed to the user that the option is
|
|
|
|
ignored for that type. For example:
|
|
|
|
|
|
|
|
$ perf script -f comm,tid,trace
|
|
|
|
'trace' not valid for hardware events. Ignoring.
|
|
|
|
'trace' not valid for software events. Ignoring.
|
|
|
|
|
|
|
|
Alternatively, if the type is given an invalid field is specified it
|
|
|
|
is an error. For example:
|
|
|
|
|
|
|
|
perf script -v -f sw:comm,tid,trace
|
|
|
|
'trace' not valid for software events.
|
|
|
|
|
|
|
|
At this point usage is displayed, and perf-script exits.
|
|
|
|
|
|
|
|
Finally, a user may not set fields to none for all event types.
|
|
|
|
i.e., -f "" is not allowed.
|
|
|
|
|
2011-03-10 05:23:27 +00:00
|
|
|
-k::
|
|
|
|
--vmlinux=<file>::
|
|
|
|
vmlinux pathname
|
|
|
|
|
|
|
|
--kallsyms=<file>::
|
|
|
|
kallsyms pathname
|
|
|
|
|
|
|
|
--symfs=<directory>::
|
|
|
|
Look for files with symbols relative to this directory.
|
|
|
|
|
|
|
|
-G::
|
|
|
|
--hide-call-graph::
|
|
|
|
When printing symbols do not display call chain.
|
perf script: Support custom field selection for output
Allow a user to select which fields to print to stdout for event data.
Options include comm (command name), tid (thread id), pid (process id),
time (perf timestamp), cpu, event (for event name), and trace (for
trace data).
Default is set to maintain compatibility with current output; this
feature does alter output format slightly -- no '-' between command
and pid/tid.
Thanks to Frederic Weisbecker for detailed suggestions on this approach.
Examples (output compressed)
1. trace, default format
perf record -ga -e sched:sched_switch
perf script
swapper 0 [000] 537.037184: sched_switch: prev_comm=swapper prev_pid=0...
sshd 1675 [000] 537.037309: sched_switch: prev_comm=sshd prev_pid=1675...
netstat 1692 [001] 537.038664: sched_switch: prev_comm=netstat prev_pid=1692...
2. trace, custom format
perf record -ga -e sched:sched_switch
perf script -f comm,pid,time,trace <--- omitting cpu and event name
swapper 0 537.037184: prev_comm=swapper prev_pid=0 prev_prio=120 ...
sshd 1675 537.037309: prev_comm=sshd prev_pid=1675 prev_prio=120 ...
netstat 1692 537.038664: prev_comm=netstat prev_pid=1692 prev_prio=120 ...
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <1299734608-5223-5-git-send-email-daahern@cisco.com>
Signed-off-by: David Ahern <daahern@cisco.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-03-10 05:23:26 +00:00
|
|
|
|
2009-09-11 10:12:54 +00:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2010-11-16 17:45:39 +00:00
|
|
|
linkperf:perf-record[1], linkperf:perf-script-perl[1],
|
|
|
|
linkperf:perf-script-python[1]
|