2009-04-20 21:58:01 +08:00
|
|
|
perf-record(1)
|
2009-05-30 18:38:51 +08:00
|
|
|
==============
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2009-05-27 15:33:18 +08:00
|
|
|
perf-record - Run a command and record its profile into perf.data
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] <command>
|
2009-05-28 22:25:34 +08:00
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>]
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This command runs a command and gathers a performance counter profile
|
2009-05-27 15:33:18 +08:00
|
|
|
from it, into perf.data - without displaying anything.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
This file can then be inspected later on, using 'perf report'.
|
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
<command>...::
|
|
|
|
Any command you can specify in a shell.
|
|
|
|
|
|
|
|
-e::
|
|
|
|
--event=::
|
2009-11-23 22:42:35 +08:00
|
|
|
Select the PMU event. Selection can be:
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-11-23 22:42:35 +08:00
|
|
|
- a symbolic event name (use 'perf list' to list all events)
|
|
|
|
|
|
|
|
- a raw PMU event (eventsel+umask) in the form of rNNN where NNN is a
|
|
|
|
hexadecimal event descriptor.
|
|
|
|
|
|
|
|
- a hardware breakpoint event in the form of '\mem:addr[:access]'
|
|
|
|
where addr is the address in memory you want to break in.
|
|
|
|
Access is the memory access type (read, write, execute) it can
|
|
|
|
be passed as follows: '\mem:addr[:[r][w][x]]'.
|
|
|
|
If you want to profile read-write accesses in 0x1000, just set
|
|
|
|
'mem:0x1000:rw'.
|
2010-12-01 09:57:16 +08:00
|
|
|
|
|
|
|
--filter=<filter>::
|
|
|
|
Event filter.
|
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
-a::
|
2010-12-01 09:57:16 +08:00
|
|
|
--all-cpus::
|
|
|
|
System-wide collection from all CPUs.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
-l::
|
2009-08-05 21:04:53 +08:00
|
|
|
Scale counter values.
|
|
|
|
|
|
|
|
-p::
|
|
|
|
--pid=::
|
2012-02-09 00:32:52 +08:00
|
|
|
Record events on existing process ID (comma separated list).
|
2010-12-01 09:57:16 +08:00
|
|
|
|
|
|
|
-t::
|
|
|
|
--tid=::
|
2012-02-09 00:32:52 +08:00
|
|
|
Record events on existing thread ID (comma separated list).
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2012-01-20 00:08:15 +08:00
|
|
|
-u::
|
|
|
|
--uid=::
|
|
|
|
Record events in threads owned by uid. Name or number.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-r::
|
|
|
|
--realtime=::
|
|
|
|
Collect data with this RT SCHED_FIFO priority.
|
2013-06-05 19:35:06 +08:00
|
|
|
|
perf record: Add "nodelay" mode, disabled by default
Sometimes there is a need to use perf in "live-log" mode. The problem
is, for seldom events, actual info output is largely delayed because
perf-record reads sample data in whole pages.
So for such scenarious, add flag for perf-record to go in "nodelay"
mode. To track e.g. what's going on in icmp_rcv while ping is running
Use it with something like this:
(1) $ perf probe -L icmp_rcv | grep -U8 '^ *43\>'
goto error;
}
38 if (!pskb_pull(skb, sizeof(*icmph)))
goto error;
icmph = icmp_hdr(skb);
43 ICMPMSGIN_INC_STATS_BH(net, icmph->type);
/*
* 18 is the highest 'known' ICMP type. Anything else is a mystery
*
* RFC 1122: 3.2.2 Unknown ICMP messages types MUST be silently
* discarded.
*/
50 if (icmph->type > NR_ICMP_TYPES)
goto error;
$ perf probe icmp_rcv:43 'type=icmph->type'
(2) $ cat trace-icmp.py
[...]
def trace_begin():
print "in trace_begin"
def trace_end():
print "in trace_end"
def probe__icmp_rcv(event_name, context, common_cpu,
common_secs, common_nsecs, common_pid, common_comm,
__probe_ip, type):
print_header(event_name, common_cpu, common_secs, common_nsecs,
common_pid, common_comm)
print "__probe_ip=%u, type=%u\n" % \
(__probe_ip, type),
[...]
(3) $ perf record -a -D -e probe:icmp_rcv -o - | \
perf script -i - -s trace-icmp.py
Thanks to Peter Zijlstra for pointing how to do it.
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>, Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <20110112140613.GA11698@tugrik.mns.mnsspb.ru>
Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-01-12 22:59:36 +08:00
|
|
|
-D::
|
|
|
|
--no-delay::
|
|
|
|
Collect data without buffering.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
|
|
|
-c::
|
|
|
|
--count=::
|
|
|
|
Event period to sample.
|
|
|
|
|
|
|
|
-o::
|
|
|
|
--output=::
|
|
|
|
Output file name.
|
|
|
|
|
|
|
|
-i::
|
2010-05-12 16:40:01 +08:00
|
|
|
--no-inherit::
|
|
|
|
Child tasks do not inherit counters.
|
2009-08-05 21:04:53 +08:00
|
|
|
-F::
|
|
|
|
--freq=::
|
|
|
|
Profile at this frequency.
|
|
|
|
|
|
|
|
-m::
|
|
|
|
--mmap-pages=::
|
2011-12-19 21:39:32 +08:00
|
|
|
Number of mmap data pages. Must be a power of two.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
|
|
|
-g::
|
|
|
|
--call-graph::
|
|
|
|
Do call-graph (stack chain/backtrace) recording.
|
|
|
|
|
2010-10-27 01:20:09 +08:00
|
|
|
-q::
|
|
|
|
--quiet::
|
|
|
|
Don't print any message, useful for scripting.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-v::
|
|
|
|
--verbose::
|
|
|
|
Be more verbose (show counter open errors, etc).
|
|
|
|
|
|
|
|
-s::
|
|
|
|
--stat::
|
|
|
|
Per thread counts.
|
|
|
|
|
|
|
|
-d::
|
|
|
|
--data::
|
|
|
|
Sample addresses.
|
|
|
|
|
2010-12-02 20:25:28 +08:00
|
|
|
-T::
|
|
|
|
--timestamp::
|
|
|
|
Sample timestamps. Use it with 'perf report -D' to see the timestamps,
|
|
|
|
for instance.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-n::
|
|
|
|
--no-samples::
|
|
|
|
Don't sample.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-08-31 09:32:03 +08:00
|
|
|
-R::
|
|
|
|
--raw-samples::
|
2010-04-15 02:05:17 +08:00
|
|
|
Collect raw sample records from all opened counters (default for tracepoint counters).
|
2009-08-31 09:32:03 +08:00
|
|
|
|
2010-05-28 18:00:01 +08:00
|
|
|
-C::
|
|
|
|
--cpu::
|
2010-12-01 09:57:16 +08:00
|
|
|
Collect samples only on the list of CPUs provided. Multiple CPUs can be provided as a
|
|
|
|
comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2.
|
2010-05-28 18:00:01 +08:00
|
|
|
In per-thread mode with inheritance mode on (default), samples are captured only when
|
|
|
|
the thread executes on the designated CPUs. Default is to monitor all CPUs.
|
|
|
|
|
2010-06-17 17:39:01 +08:00
|
|
|
-N::
|
|
|
|
--no-buildid-cache::
|
|
|
|
Do not update the builid cache. This saves some overhead in situations
|
|
|
|
where the information in the perf.data file (which includes buildids)
|
|
|
|
is sufficient.
|
|
|
|
|
perf tool: Add cgroup support
This patch adds the ability to filter monitoring based on container groups
(cgroups) for both perf stat and perf record. It is possible to monitor
multiple cgroup in parallel. There is one cgroup per event. The cgroups to
monitor are passed via a new -G option followed by a comma separated list of
cgroup names.
The cgroup filesystem has to be mounted. Given a cgroup name, the perf tool
finds the corresponding directory in the cgroup filesystem and opens it. It
then passes that file descriptor to the kernel.
Example:
$ perf stat -B -a -e cycles:u,cycles:u,cycles:u -G test1,,test2 -- sleep 1
Performance counter stats for 'sleep 1':
2,368,667,414 cycles test1
2,369,661,459 cycles
<not counted> cycles test2
1.001856890 seconds time elapsed
Signed-off-by: Stephane Eranian <eranian@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4d590290.825bdf0a.7d0a.4890@mx.google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2011-02-14 17:20:01 +08:00
|
|
|
-G name,...::
|
|
|
|
--cgroup name,...::
|
|
|
|
monitor only in the container (cgroup) called "name". This option is available only
|
|
|
|
in per-cpu mode. The cgroup filesystem must be mounted. All threads belonging to
|
|
|
|
container "name" are monitored when they run on the monitored CPUs. Multiple cgroups
|
|
|
|
can be provided. Each cgroup is applied to the corresponding event, i.e., first cgroup
|
|
|
|
to first event, second cgroup to second event and so on. It is possible to provide
|
|
|
|
an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
|
|
|
|
corresponding events, i.e., they always refer to events defined earlier on the command
|
|
|
|
line.
|
|
|
|
|
2012-02-10 06:21:02 +08:00
|
|
|
-b::
|
2012-03-09 06:47:45 +08:00
|
|
|
--branch-any::
|
|
|
|
Enable taken branch stack sampling. Any type of taken branch may be sampled.
|
|
|
|
This is a shortcut for --branch-filter any. See --branch-filter for more infos.
|
|
|
|
|
|
|
|
-j::
|
|
|
|
--branch-filter::
|
2012-02-10 06:21:02 +08:00
|
|
|
Enable taken branch stack sampling. Each sample captures a series of consecutive
|
|
|
|
taken branches. The number of branches captured with each sample depends on the
|
|
|
|
underlying hardware, the type of branches of interest, and the executed code.
|
|
|
|
It is possible to select the types of branches captured by enabling filters. The
|
|
|
|
following filters are defined:
|
|
|
|
|
2012-03-09 06:47:45 +08:00
|
|
|
- any: any type of branches
|
2012-02-10 06:21:02 +08:00
|
|
|
- any_call: any function call or system call
|
|
|
|
- any_ret: any function return or system call return
|
2012-05-18 16:46:50 +08:00
|
|
|
- ind_call: any indirect branch
|
2012-02-10 06:21:02 +08:00
|
|
|
- u: only when the branch target is at the user level
|
|
|
|
- k: only when the branch target is in the kernel
|
|
|
|
- hv: only when the target is at the hypervisor level
|
2013-09-20 22:40:42 +08:00
|
|
|
- in_tx: only when the target is in a hardware transaction
|
|
|
|
- no_tx: only when the target is not in a hardware transaction
|
|
|
|
- abort_tx: only when the target is a hardware transaction abort
|
2012-02-10 06:21:02 +08:00
|
|
|
|
|
|
|
+
|
2012-03-09 06:47:45 +08:00
|
|
|
The option requires at least one branch type among any, any_call, any_ret, ind_call.
|
2012-11-30 13:10:25 +08:00
|
|
|
The privilege levels may be omitted, in which case, the privilege levels of the associated
|
2012-03-09 06:47:45 +08:00
|
|
|
event are applied to the branch filter. Both kernel (k) and hypervisor (hv) privilege
|
|
|
|
levels are subject to permissions. When sampling on multiple events, branch stack sampling
|
|
|
|
is enabled for all the sampling events. The sampled branch type is the same for all events.
|
|
|
|
The various filters must be specified as a comma separated list: --branch-filter any_ret,u,k
|
|
|
|
Note that this feature may not be available on all processors.
|
2012-02-10 06:21:02 +08:00
|
|
|
|
2013-01-24 23:10:29 +08:00
|
|
|
--weight::
|
|
|
|
Enable weightened sampling. An additional weight is recorded per sample and can be
|
|
|
|
displayed with the weight and local_weight sort keys. This currently works for TSX
|
|
|
|
abort events and some memory events in precise mode on modern Intel CPUs.
|
|
|
|
|
2013-09-20 22:40:43 +08:00
|
|
|
--transaction::
|
|
|
|
Record transaction flags for transaction related events.
|
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2009-06-06 20:56:33 +08:00
|
|
|
linkperf:perf-stat[1], linkperf:perf-list[1]
|