2009-04-20 13:58:01 +00:00
|
|
|
perf-record(1)
|
2009-05-30 10:38:51 +00:00
|
|
|
==============
|
2009-04-20 13:58:01 +00:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2009-05-27 07:33:18 +00:00
|
|
|
perf-record - Run a command and record its profile into perf.data
|
2009-04-20 13:58:01 +00:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2017-10-13 15:10:12 +00:00
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-a] <command>
|
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-a] -- <command> [<options>]
|
2009-04-20 13:58:01 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This command runs a command and gathers a performance counter profile
|
2009-05-27 07:33:18 +00:00
|
|
|
from it, into perf.data - without displaying anything.
|
2009-04-20 13:58:01 +00: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 14:42:35 +00:00
|
|
|
Select the PMU event. Selection can be:
|
2009-04-20 13:58:01 +00:00
|
|
|
|
2009-11-23 14:42:35 +00: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.
|
|
|
|
|
2015-01-08 01:13:53 +00:00
|
|
|
- a symbolically formed PMU event like 'pmu/param1=0x3,param2/' where
|
|
|
|
'param1', 'param2', etc are defined as formats for the PMU in
|
2016-09-23 14:38:33 +00:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*.
|
2015-01-08 01:13:53 +00:00
|
|
|
|
|
|
|
- a symbolically formed event like 'pmu/config=M,config1=N,config3=K/'
|
|
|
|
|
|
|
|
where M, N, K are numbers (in decimal, hex, octal format). Acceptable
|
|
|
|
values for each of 'config', 'config1' and 'config2' are defined by
|
2016-09-23 14:38:33 +00:00
|
|
|
corresponding entries in /sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 01:13:53 +00:00
|
|
|
param1 and param2 are defined as formats for the PMU in:
|
2016-09-23 14:38:33 +00:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 01:13:53 +00:00
|
|
|
|
2016-10-13 17:57:13 +00:00
|
|
|
There are also some parameters which are not defined in .../<pmu>/format/*.
|
2015-07-29 09:42:11 +00:00
|
|
|
These params can be used to overload default config values per event.
|
2016-10-13 17:57:13 +00:00
|
|
|
Here are some common parameters:
|
2015-07-08 08:44:54 +00:00
|
|
|
- 'period': Set event sampling period
|
2015-08-09 06:45:23 +00:00
|
|
|
- 'freq': Set event sampling frequency
|
2015-08-04 08:30:19 +00:00
|
|
|
- 'time': Disable/enable time stamping. Acceptable values are 1 for
|
|
|
|
enabling time stamping. 0 for disabling time stamping.
|
|
|
|
The default is 1.
|
perf callchain: Per-event type selection support
This patchkit adds the ability to set callgraph mode (fp, dwarf, lbr) per
event. This in term can reduce sampling overhead and the size of the
perf.data.
Here is an example.
perf record -e 'cpu/cpu-cycles,period=1000,call-graph=fp,time=1/,cpu/instructions,call-graph=lbr/' sleep 1
perf evlist -v
cpu/cpu-cycles,period=1000,call-graph=fp,time=1/: type: 4, size: 112,
config: 0x3c, { sample_period, sample_freq }: 1000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|IDENTIFIER, read_format: ID, disabled: 1,
inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all:
1, exclude_guest: 1, mmap2: 1, comm_exec: 1
cpu/instructions,call-graph=lbr/: type: 4, size: 112, config: 0xc0, {
sample_period, sample_freq }: 4000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|BRANCH_STACK|IDENTIFIER, read_format: ID,
disabled: 1, inherit: 1, freq: 1, enable_on_exec: 1, sample_id_all: 1,
exclude_guest: 1
Signed-off-by: Kan Liang <kan.liang@intel.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1439289050-40510-1-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-08-11 10:30:47 +00:00
|
|
|
- 'call-graph': Disable/enable callgraph. Acceptable str are "fp" for
|
2015-08-11 10:30:48 +00:00
|
|
|
FP mode, "dwarf" for DWARF mode, "lbr" for LBR mode and
|
|
|
|
"no" for disable callgraph.
|
perf callchain: Per-event type selection support
This patchkit adds the ability to set callgraph mode (fp, dwarf, lbr) per
event. This in term can reduce sampling overhead and the size of the
perf.data.
Here is an example.
perf record -e 'cpu/cpu-cycles,period=1000,call-graph=fp,time=1/,cpu/instructions,call-graph=lbr/' sleep 1
perf evlist -v
cpu/cpu-cycles,period=1000,call-graph=fp,time=1/: type: 4, size: 112,
config: 0x3c, { sample_period, sample_freq }: 1000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|IDENTIFIER, read_format: ID, disabled: 1,
inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all:
1, exclude_guest: 1, mmap2: 1, comm_exec: 1
cpu/instructions,call-graph=lbr/: type: 4, size: 112, config: 0xc0, {
sample_period, sample_freq }: 4000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|BRANCH_STACK|IDENTIFIER, read_format: ID,
disabled: 1, inherit: 1, freq: 1, enable_on_exec: 1, sample_id_all: 1,
exclude_guest: 1
Signed-off-by: Kan Liang <kan.liang@intel.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1439289050-40510-1-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-08-11 10:30:47 +00:00
|
|
|
- 'stack-size': user stack size for dwarf mode
|
perf record: Enable arbitrary event names thru name= modifier
Enable complex event names containing [.:=,] symbols to be encoded into Perf
trace using name= modifier e.g. like this:
perf record -e cpu/name=\'OFFCORE_RESPONSE:request=DEMAND_RFO:response=L3_HIT.SNOOP_HITM\',\
period=0x3567e0,event=0x3c,cmask=0x1/Duk ./futex
Below is how it looks like in the report output. Please note explicit escaped
quoting at cmdline string in the header so that thestring can be directly reused
for another collection in shell:
perf report --header
# ========
...
# cmdline : /root/abudanko/kernel/tip/tools/perf/perf record -v -e cpu/name=\'OFFCORE_RESPONSE:request=DEMAND_RFO:response=L3_HIT.SNOOP_HITM\',period=0x3567e0,event=0x3c,cmask=0x1/Duk ./futex
# event : name = OFFCORE_RESPONSE:request=DEMAND_RFO:response=L3_HIT.SNOOP_HITM, , type = 4, size = 112, config = 0x100003c, { sample_period, sample_freq } = 3500000, sample_type = IP|TID|TIME, disabled = 1, inh
...
# ========
#
#
# Total Lost Samples: 0
#
# Samples: 24K of event 'OFFCORE_RESPONSE:request=DEMAND_RFO:response=L3_HIT.SNOOP_HITM'
# Event count (approx.): 86492000000
#
# Overhead Command Shared Object Symbol
# ........ ....... ................ ..............................................
#
14.75% futex [kernel.vmlinux] [k] __entry_trampoline_start
...
perf stat -e cpu/name=\'CPU_CLK_UNHALTED.THREAD:cmask=0x1\',period=0x3567e0,event=0x3c,cmask=0x1/Duk ./futex
10000000 process context switches in 16678890291ns (1667.9ns/ctxsw)
Performance counter stats for './futex':
88,095,770,571 CPU_CLK_UNHALTED.THREAD:cmask=0x1
16.679542407 seconds time elapsed
Signed-off-by: Alexey Budankov <alexey.budankov@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/c194b060-761d-0d50-3b21-bb4ed680002d@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2018-06-04 06:50:56 +00:00
|
|
|
- 'name' : User defined event name. Single quotes (') may be used to
|
|
|
|
escape symbols in the name from parsing by shell and tool
|
|
|
|
like this: name=\'CPU_CLK_UNHALTED.THREAD:cmask=0x1\'.
|
2016-10-13 17:57:13 +00:00
|
|
|
|
|
|
|
See the linkperf:perf-list[1] man page for more parameters.
|
|
|
|
|
2015-07-08 08:44:54 +00:00
|
|
|
Note: If user explicitly sets options which conflict with the params,
|
2016-10-13 17:57:13 +00:00
|
|
|
the value set by the parameters will be overridden.
|
2015-07-08 08:44:54 +00:00
|
|
|
|
2016-09-06 16:37:15 +00:00
|
|
|
Also not defined in .../<pmu>/format/* are PMU driver specific
|
|
|
|
configuration parameters. Any configuration parameter preceded by
|
|
|
|
the letter '@' is not interpreted in user space and sent down directly
|
|
|
|
to the PMU driver. For example:
|
|
|
|
|
|
|
|
perf record -e some_event/@cfg1,@cfg2=config/ ...
|
|
|
|
|
|
|
|
will see 'cfg1' and 'cfg2=config' pushed to the PMU driver associated
|
|
|
|
with the event for further processing. There is no restriction on
|
|
|
|
what the configuration parameters are, as long as their semantic is
|
|
|
|
understood and supported by the PMU driver.
|
|
|
|
|
2014-05-29 15:26:51 +00:00
|
|
|
- a hardware breakpoint event in the form of '\mem:addr[/len][:access]'
|
2009-11-23 14:42:35 +00:00
|
|
|
where addr is the address in memory you want to break in.
|
|
|
|
Access is the memory access type (read, write, execute) it can
|
2014-05-29 15:26:51 +00:00
|
|
|
be passed as follows: '\mem:addr[:[r][w][x]]'. len is the range,
|
|
|
|
number of bytes from specified addr, which the breakpoint will cover.
|
2009-11-23 14:42:35 +00:00
|
|
|
If you want to profile read-write accesses in 0x1000, just set
|
|
|
|
'mem:0x1000:rw'.
|
2014-05-29 15:26:51 +00:00
|
|
|
If you want to profile write accesses in [0x1000~1008), just set
|
|
|
|
'mem:0x1000/8:w'.
|
2010-12-01 01:57:16 +00:00
|
|
|
|
2019-02-01 13:46:51 +00:00
|
|
|
- a BPF source file (ending in .c) or a precompiled object file (ending
|
|
|
|
in .o) selects one or more BPF events.
|
|
|
|
The BPF program can attach to various perf events based on the ELF section
|
|
|
|
names.
|
|
|
|
|
|
|
|
When processing a '.c' file, perf searches an installed LLVM to compile it
|
|
|
|
into an object file first. Optional clang options can be passed via the
|
|
|
|
'--clang-opt' command line option, e.g.:
|
|
|
|
|
|
|
|
perf record --clang-opt "-DLINUX_VERSION_CODE=0x50000" \
|
|
|
|
-e tests/bpf-script-example.c
|
|
|
|
|
|
|
|
Note: '--clang-opt' must be placed before '--event/-e'.
|
|
|
|
|
2015-03-02 03:13:33 +00:00
|
|
|
- a group of events surrounded by a pair of brace ("{event1,event2,...}").
|
|
|
|
Each event is separated by commas and the group should be quoted to
|
|
|
|
prevent the shell interpretation. You also need to use --group on
|
|
|
|
"perf report" to view group events together.
|
|
|
|
|
2010-12-01 01:57:16 +00:00
|
|
|
--filter=<filter>::
|
2018-07-09 10:57:15 +00:00
|
|
|
Event filter. This option should follow an event selector (-e) which
|
2016-09-23 14:38:39 +00:00
|
|
|
selects either tracepoint event(s) or a hardware trace PMU
|
|
|
|
(e.g. Intel PT or CoreSight).
|
|
|
|
|
|
|
|
- tracepoint filters
|
|
|
|
|
|
|
|
In the case of tracepoints, multiple '--filter' options are combined
|
2015-07-10 07:36:10 +00:00
|
|
|
using '&&'.
|
2016-09-23 14:38:39 +00:00
|
|
|
|
|
|
|
- address filters
|
|
|
|
|
|
|
|
A hardware trace PMU advertises its ability to accept a number of
|
|
|
|
address filters by specifying a non-zero value in
|
|
|
|
/sys/bus/event_source/devices/<pmu>/nr_addr_filters.
|
|
|
|
|
|
|
|
Address filters have the format:
|
|
|
|
|
|
|
|
filter|start|stop|tracestop <start> [/ <size>] [@<file name>]
|
|
|
|
|
|
|
|
Where:
|
|
|
|
- 'filter': defines a region that will be traced.
|
|
|
|
- 'start': defines an address at which tracing will begin.
|
|
|
|
- 'stop': defines an address at which tracing will stop.
|
|
|
|
- 'tracestop': defines a region in which tracing will stop.
|
|
|
|
|
|
|
|
<file name> is the name of the object file, <start> is the offset to the
|
|
|
|
code to trace in that file, and <size> is the size of the region to
|
|
|
|
trace. 'start' and 'stop' filters need not specify a <size>.
|
|
|
|
|
|
|
|
If no object file is specified then the kernel is assumed, in which case
|
|
|
|
the start address must be a current kernel memory address.
|
|
|
|
|
|
|
|
<start> can also be specified by providing the name of a symbol. If the
|
|
|
|
symbol name is not unique, it can be disambiguated by inserting #n where
|
|
|
|
'n' selects the n'th symbol in address order. Alternately #0, #g or #G
|
|
|
|
select only a global symbol. <size> can also be specified by providing
|
|
|
|
the name of a symbol, in which case the size is calculated to the end
|
|
|
|
of that symbol. For 'filter' and 'tracestop' filters, if <size> is
|
|
|
|
omitted and <start> is a symbol, then the size is calculated to the end
|
|
|
|
of that symbol.
|
|
|
|
|
|
|
|
If <size> is omitted and <start> is '*', then the start and size will
|
|
|
|
be calculated from the first and last symbols, i.e. to trace the whole
|
|
|
|
file.
|
|
|
|
|
|
|
|
If symbol names (or '*') are provided, they must be surrounded by white
|
|
|
|
space.
|
|
|
|
|
|
|
|
The filter passed to the kernel is not necessarily the same as entered.
|
|
|
|
To see the filter that is passed, use the -v option.
|
|
|
|
|
|
|
|
The kernel may not be able to configure a trace region if it is not
|
|
|
|
within a single mapping. MMAP events (or /proc/<pid>/maps) can be
|
|
|
|
examined to determine if that is a possibility.
|
|
|
|
|
|
|
|
Multiple filters can be separated with space or comma.
|
2015-07-10 07:36:10 +00:00
|
|
|
|
|
|
|
--exclude-perf::
|
|
|
|
Don't record events issued by perf itself. This option should follow
|
2018-07-09 10:57:15 +00:00
|
|
|
an event selector (-e) which selects tracepoint event(s). It adds a
|
2015-07-10 07:36:10 +00:00
|
|
|
filter expression 'common_pid != $PERFPID' to filters. If other
|
|
|
|
'--filter' exists, the new filter expression will be combined with
|
|
|
|
them by '&&'.
|
2010-12-01 01:57:16 +00:00
|
|
|
|
2009-04-20 13:58:01 +00:00
|
|
|
-a::
|
2010-12-01 01:57:16 +00:00
|
|
|
--all-cpus::
|
2017-02-17 17:00:18 +00:00
|
|
|
System-wide collection from all CPUs (default if no target is specified).
|
2009-04-20 13:58:01 +00:00
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-p::
|
|
|
|
--pid=::
|
2012-02-08 16:32:52 +00:00
|
|
|
Record events on existing process ID (comma separated list).
|
2010-12-01 01:57:16 +00:00
|
|
|
|
|
|
|
-t::
|
|
|
|
--tid=::
|
2012-02-08 16:32:52 +00:00
|
|
|
Record events on existing thread ID (comma separated list).
|
2013-11-18 09:55:57 +00:00
|
|
|
This option also disables inheritance by default. Enable it by adding
|
|
|
|
--inherit.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
2012-01-19 16:08:15 +00:00
|
|
|
-u::
|
|
|
|
--uid=::
|
|
|
|
Record events in threads owned by uid. Name or number.
|
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-r::
|
|
|
|
--realtime=::
|
|
|
|
Collect data with this RT SCHED_FIFO priority.
|
2013-06-05 11:35:06 +00:00
|
|
|
|
2014-01-14 20:52:14 +00:00
|
|
|
--no-buffering::
|
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 14:59:36 +00:00
|
|
|
Collect data without buffering.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
|
|
|
-c::
|
|
|
|
--count=::
|
|
|
|
Event period to sample.
|
|
|
|
|
|
|
|
-o::
|
|
|
|
--output=::
|
|
|
|
Output file name.
|
|
|
|
|
|
|
|
-i::
|
2010-05-12 08:40:01 +00:00
|
|
|
--no-inherit::
|
|
|
|
Child tasks do not inherit counters.
|
perf record: Throttle user defined frequencies to the maximum allowed
# perf record -F 200000 sleep 1
warning: Maximum frequency rate (15,000 Hz) exceeded, throttling from 200,000 Hz to 15,000 Hz.
The limit can be raised via /proc/sys/kernel/perf_event_max_sample_rate.
The kernel will lower it when perf's interrupts take too long.
Use --strict-freq to disable this throttling, refusing to record.
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.019 MB perf.data (15 samples) ]
# perf evlist -v
cycles:ppp: size: 112, { sample_period, sample_freq }: 15000, sample_type: IP|TID|TIME|PERIOD, disabled: 1, inherit: 1, mmap: 1, comm: 1, freq: 1, enable_on_exec: 1, task: 1, precise_ip: 3, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1
For those wanting that it fails if the desired frequency can't be used:
# perf record --strict-freq -F 200000 sleep 1
error: Maximum frequency rate (15,000 Hz) exceeded.
Please use -F freq option with a lower value or consider
tweaking /proc/sys/kernel/perf_event_max_sample_rate.
#
Suggested-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-oyebruc44nlja499nqkr1nzn@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2018-03-01 17:52:50 +00:00
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-F::
|
|
|
|
--freq=::
|
perf record: Allow asking for the maximum allowed sample rate
Add the handy '-F max' shortcut to reading and using the
kernel.perf_event_max_sample_rate value as the user supplied
sampling frequency:
# perf record -F max sleep 1
info: Using a maximum frequency rate of 15,000 Hz
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.019 MB perf.data (14 samples) ]
# sysctl kernel.perf_event_max_sample_rate
kernel.perf_event_max_sample_rate = 15000
# perf evlist -v
cycles:ppp: size: 112, { sample_period, sample_freq }: 15000, sample_type: IP|TID|TIME|PERIOD, disabled: 1, inherit: 1, mmap: 1, comm: 1, freq: 1, enable_on_exec: 1, task: 1, precise_ip: 3, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1
# perf record -F 10 sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.019 MB perf.data (4 samples) ]
# perf evlist -v
cycles:ppp: size: 112, { sample_period, sample_freq }: 10, sample_type: IP|TID|TIME|PERIOD, disabled: 1, inherit: 1, mmap: 1, comm: 1, freq: 1, enable_on_exec: 1, task: 1, precise_ip: 3, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1
#
Suggested-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-4y0tiuws62c64gp4cf0hme0m@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2018-03-01 16:46:23 +00:00
|
|
|
Profile at this frequency. Use 'max' to use the currently maximum
|
|
|
|
allowed frequency, i.e. the value in the kernel.perf_event_max_sample_rate
|
perf record: Throttle user defined frequencies to the maximum allowed
# perf record -F 200000 sleep 1
warning: Maximum frequency rate (15,000 Hz) exceeded, throttling from 200,000 Hz to 15,000 Hz.
The limit can be raised via /proc/sys/kernel/perf_event_max_sample_rate.
The kernel will lower it when perf's interrupts take too long.
Use --strict-freq to disable this throttling, refusing to record.
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.019 MB perf.data (15 samples) ]
# perf evlist -v
cycles:ppp: size: 112, { sample_period, sample_freq }: 15000, sample_type: IP|TID|TIME|PERIOD, disabled: 1, inherit: 1, mmap: 1, comm: 1, freq: 1, enable_on_exec: 1, task: 1, precise_ip: 3, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1
For those wanting that it fails if the desired frequency can't be used:
# perf record --strict-freq -F 200000 sleep 1
error: Maximum frequency rate (15,000 Hz) exceeded.
Please use -F freq option with a lower value or consider
tweaking /proc/sys/kernel/perf_event_max_sample_rate.
#
Suggested-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-oyebruc44nlja499nqkr1nzn@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2018-03-01 17:52:50 +00:00
|
|
|
sysctl. Will throttle down to the currently maximum allowed frequency.
|
|
|
|
See --strict-freq.
|
|
|
|
|
|
|
|
--strict-freq::
|
|
|
|
Fail if the specified frequency can't be used.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
|
|
|
-m::
|
|
|
|
--mmap-pages=::
|
2013-09-01 10:36:13 +00:00
|
|
|
Number of mmap data pages (must be a power of two) or size
|
|
|
|
specification with appended unit character - B/K/M/G. The
|
|
|
|
size is rounded up to have nearest pages power of two value.
|
2015-04-09 15:53:46 +00:00
|
|
|
Also, by adding a comma, the number of mmap pages for AUX
|
|
|
|
area tracing can be specified.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
2015-03-02 03:13:33 +00:00
|
|
|
--group::
|
|
|
|
Put all events in a single event group. This precedes the --event
|
|
|
|
option and remains only for backward compatibility. See --event.
|
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-g::
|
2013-10-26 14:25:33 +00:00
|
|
|
Enables call-graph (stack chain/backtrace) recording.
|
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
--call-graph::
|
2013-10-26 14:25:33 +00:00
|
|
|
Setup and enable call-graph (stack chain/backtrace) recording,
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 14:28:32 +00:00
|
|
|
implies -g. Default is "fp".
|
2013-10-26 14:25:33 +00:00
|
|
|
|
|
|
|
Allows specifying "fp" (frame pointer) or "dwarf"
|
2015-01-05 18:23:04 +00:00
|
|
|
(DWARF's CFI - Call Frame Information) or "lbr"
|
|
|
|
(Hardware Last Branch Record facility) as the method to collect
|
2013-10-26 14:25:33 +00:00
|
|
|
the information used to show the call graphs.
|
|
|
|
|
|
|
|
In some systems, where binaries are build with gcc
|
|
|
|
--fomit-frame-pointer, using the "fp" method will produce bogus
|
|
|
|
call graphs, using "dwarf", if available (perf tools linked to
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 14:28:32 +00:00
|
|
|
the libunwind or libdw library) should be used instead.
|
2015-01-05 18:23:04 +00:00
|
|
|
Using the "lbr" method doesn't require any compiler options. It
|
|
|
|
will produce call graphs from the hardware LBR registers. The
|
2017-05-03 12:13:50 +00:00
|
|
|
main limitation is that it is only available on new Intel
|
2015-01-05 18:23:04 +00:00
|
|
|
platforms, such as Haswell. It can only get user call chain. It
|
|
|
|
doesn't work with branch stack sampling at the same time.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 14:28:32 +00:00
|
|
|
When "dwarf" recording is used, perf also records (user) stack dump
|
|
|
|
when sampled. Default size of the stack dump is 8192 (bytes).
|
|
|
|
User can change the size by passing the size after comma like
|
|
|
|
"--call-graph dwarf,4096".
|
|
|
|
|
2010-10-26 17:20:09 +00:00
|
|
|
-q::
|
|
|
|
--quiet::
|
|
|
|
Don't print any message, useful for scripting.
|
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-v::
|
|
|
|
--verbose::
|
|
|
|
Be more verbose (show counter open errors, etc).
|
|
|
|
|
|
|
|
-s::
|
|
|
|
--stat::
|
2015-05-09 15:19:42 +00:00
|
|
|
Record per-thread event counts. Use it with 'perf report -T' to see
|
|
|
|
the values.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
|
|
|
-d::
|
|
|
|
--data::
|
2017-08-29 17:11:08 +00:00
|
|
|
Record the sample virtual addresses.
|
|
|
|
|
|
|
|
--phys-data::
|
|
|
|
Record the sample physical addresses.
|
2009-08-05 13:04:53 +00:00
|
|
|
|
2010-12-02 12:25:28 +00:00
|
|
|
-T::
|
|
|
|
--timestamp::
|
2015-06-10 14:48:50 +00:00
|
|
|
Record the sample timestamps. Use it with 'perf report -D' to see the
|
|
|
|
timestamps, for instance.
|
|
|
|
|
|
|
|
-P::
|
|
|
|
--period::
|
|
|
|
Record the sample period.
|
2010-12-02 12:25:28 +00:00
|
|
|
|
2016-08-01 18:02:35 +00:00
|
|
|
--sample-cpu::
|
|
|
|
Record the sample cpu.
|
|
|
|
|
2009-08-05 13:04:53 +00:00
|
|
|
-n::
|
|
|
|
--no-samples::
|
|
|
|
Don't sample.
|
2009-04-20 13:58:01 +00:00
|
|
|
|
2009-08-31 01:32:03 +00:00
|
|
|
-R::
|
|
|
|
--raw-samples::
|
2010-04-14 18:05:17 +00:00
|
|
|
Collect raw sample records from all opened counters (default for tracepoint counters).
|
2009-08-31 01:32:03 +00:00
|
|
|
|
2010-05-28 10:00:01 +00:00
|
|
|
-C::
|
|
|
|
--cpu::
|
2010-12-01 01:57:16 +00: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 10:00:01 +00: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.
|
|
|
|
|
2015-12-15 01:49:56 +00:00
|
|
|
-B::
|
|
|
|
--no-buildid::
|
|
|
|
Do not save the build ids of binaries in the perf.data files. This skips
|
|
|
|
post processing after recording, which sometimes makes the final step in
|
|
|
|
the recording process to take a long time, as it needs to process all
|
|
|
|
events looking for mmap records. The downside is that it can misresolve
|
|
|
|
symbols if the workload binaries used when recording get locally rebuilt
|
|
|
|
or upgraded, because the only key available in this case is the
|
|
|
|
pathname. You can also set the "record.build-id" config variable to
|
|
|
|
'skip to have this behaviour permanently.
|
|
|
|
|
2010-06-17 09:39:01 +00:00
|
|
|
-N::
|
|
|
|
--no-buildid-cache::
|
2014-09-09 15:18:50 +00:00
|
|
|
Do not update the buildid cache. This saves some overhead in situations
|
2010-06-17 09:39:01 +00:00
|
|
|
where the information in the perf.data file (which includes buildids)
|
2015-12-15 01:49:56 +00:00
|
|
|
is sufficient. You can also set the "record.build-id" config variable to
|
|
|
|
'no-cache' to have the same effect.
|
2010-06-17 09:39:01 +00:00
|
|
|
|
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 09:20:01 +00: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
|
2018-01-29 15:48:09 +00:00
|
|
|
line. If the user wants to track multiple events for a specific cgroup, the user can
|
|
|
|
use '-e e1 -e e2 -G foo,foo' or just use '-e e1 -e e2 -G foo'.
|
|
|
|
|
|
|
|
If wanting to monitor, say, 'cycles' for a cgroup and also for system wide, this
|
|
|
|
command line can be used: 'perf stat -e cycles -G cgroup_name -a -e cycles'.
|
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 09:20:01 +00:00
|
|
|
|
2012-02-09 22:21:02 +00:00
|
|
|
-b::
|
2012-03-08 22:47:45 +00: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-09 22:21:02 +00: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-08 22:47:45 +00:00
|
|
|
- any: any type of branches
|
2012-02-09 22:21:02 +00:00
|
|
|
- any_call: any function call or system call
|
|
|
|
- any_ret: any function return or system call return
|
2012-05-18 08:46:50 +00:00
|
|
|
- ind_call: any indirect branch
|
2015-10-13 07:09:11 +00:00
|
|
|
- call: direct calls, including far (to/from kernel) calls
|
2012-02-09 22:21:02 +00: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 14:40:42 +00: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
|
2014-05-22 07:20:10 +00:00
|
|
|
- cond: conditional branches
|
2017-07-18 12:13:11 +00:00
|
|
|
- save_type: save branch type during sampling in case binary is not available later
|
2012-02-09 22:21:02 +00:00
|
|
|
|
|
|
|
+
|
2014-05-22 07:20:10 +00:00
|
|
|
The option requires at least one branch type among any, any_call, any_ret, ind_call, cond.
|
2012-11-30 05:10:25 +00:00
|
|
|
The privilege levels may be omitted, in which case, the privilege levels of the associated
|
2012-03-08 22:47:45 +00: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-09 22:21:02 +00:00
|
|
|
|
2013-01-24 15:10:29 +00: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.
|
|
|
|
|
perf tools: Add PERF_RECORD_NAMESPACES to include namespaces related info
Introduce a new option to record PERF_RECORD_NAMESPACES events emitted
by the kernel when fork, clone, setns or unshare are invoked. And update
perf-record documentation with the new option to record namespace
events.
Committer notes:
Combined it with a later patch to allow printing it via 'perf report -D'
and be able to test the feature introduced in this patch. Had to move
here also perf_ns__name(), that was introduced in another later patch.
Also used PRIu64 and PRIx64 to fix the build in some enfironments wrt:
util/event.c:1129:39: error: format '%lx' expects argument of type 'long unsigned int', but argument 6 has type 'long long unsigned int' [-Werror=format=]
ret += fprintf(fp, "%u/%s: %lu/0x%lx%s", idx
^
Testing it:
# perf record --namespaces -a
^C[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 1.083 MB perf.data (423 samples) ]
#
# perf report -D
<SNIP>
3 2028902078892 0x115140 [0xa0]: PERF_RECORD_NAMESPACES 14783/14783 - nr_namespaces: 7
[0/net: 3/0xf0000081, 1/uts: 3/0xeffffffe, 2/ipc: 3/0xefffffff, 3/pid: 3/0xeffffffc,
4/user: 3/0xeffffffd, 5/mnt: 3/0xf0000000, 6/cgroup: 3/0xeffffffb]
0x1151e0 [0x30]: event: 9
.
. ... raw event: size 48 bytes
. 0000: 09 00 00 00 02 00 30 00 c4 71 82 68 0c 7f 00 00 ......0..q.h....
. 0010: a9 39 00 00 a9 39 00 00 94 28 fe 63 d8 01 00 00 .9...9...(.c....
. 0020: 03 00 00 00 00 00 00 00 ce c4 02 00 00 00 00 00 ................
<SNIP>
NAMESPACES events: 1
<SNIP>
#
Signed-off-by: Hari Bathini <hbathini@linux.vnet.ibm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Starovoitov <ast@fb.com>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Cc: Aravinda Prasad <aravinda@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sargun Dhillon <sargun@sargun.me>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/148891930386.25309.18412039920746995488.stgit@hbathini.in.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-03-07 20:41:43 +00:00
|
|
|
--namespaces::
|
|
|
|
Record events of type PERF_RECORD_NAMESPACES.
|
|
|
|
|
2013-09-20 14:40:43 +00:00
|
|
|
--transaction::
|
|
|
|
Record transaction flags for transaction related events.
|
|
|
|
|
2013-11-15 13:52:29 +00:00
|
|
|
--per-thread::
|
|
|
|
Use per-thread mmaps. By default per-cpu mmaps are created. This option
|
|
|
|
overrides that and uses per-thread mmaps. A side-effect of that is that
|
|
|
|
inheritance is automatically disabled. --per-thread is ignored with a warning
|
|
|
|
if combined with -a or -C options.
|
2013-11-01 13:51:34 +00:00
|
|
|
|
2014-01-14 20:58:12 +00:00
|
|
|
-D::
|
|
|
|
--delay=::
|
2014-01-11 21:38:27 +00:00
|
|
|
After starting the program, wait msecs before measuring. This is useful to
|
|
|
|
filter out the startup phase of the program, which is often very different.
|
|
|
|
|
2014-09-24 11:48:41 +00:00
|
|
|
-I::
|
|
|
|
--intr-regs::
|
|
|
|
Capture machine state (registers) at interrupt, i.e., on counter overflows for
|
|
|
|
each sample. List of captured registers depends on the architecture. This option
|
perf record: Add ability to name registers to record
This patch modifies the -I/--int-regs option to enablepassing the name
of the registers to sample on interrupt. Registers can be specified by
their symbolic names. For instance on x86, --intr-regs=ax,si.
The motivation is to reduce the size of the perf.data file and the
overhead of sampling by only collecting the registers useful to a
specific analysis. For instance, for value profiling, sampling only the
registers used to passed arguements to functions.
With no parameter, the --intr-regs still records all possible registers
based on the architecture.
To name registers, it is necessary to use the long form of the option,
i.e., --intr-regs:
$ perf record --intr-regs=si,di,r8,r9 .....
To record any possible registers:
$ perf record -I .....
$ perf report --intr-regs ...
To display the register, one can use perf report -D
To list the available registers:
$ perf record --intr-regs=\?
available registers: AX BX CX DX SI DI BP SP IP FLAGS CS SS R8 R9 R10 R11 R12 R13 R14 R15
Signed-off-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1441039273-16260-4-git-send-email-eranian@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-08-31 16:41:12 +00:00
|
|
|
is off by default. It is possible to select the registers to sample using their
|
|
|
|
symbolic names, e.g. on x86, ax, si. To list the available registers use
|
|
|
|
--intr-regs=\?. To name registers, pass a comma separated list such as
|
|
|
|
--intr-regs=ax,bx. The list of register is architecture dependent.
|
|
|
|
|
2017-09-05 17:00:28 +00:00
|
|
|
--user-regs::
|
|
|
|
Capture user registers at sample time. Same arguments as -I.
|
2014-09-24 11:48:41 +00:00
|
|
|
|
2015-02-24 23:13:40 +00:00
|
|
|
--running-time::
|
|
|
|
Record running and enabled time for read events (:S)
|
|
|
|
|
2015-03-30 22:19:31 +00:00
|
|
|
-k::
|
|
|
|
--clockid::
|
|
|
|
Sets the clock id to use for the various time fields in the perf_event_type
|
|
|
|
records. See clock_gettime(). In particular CLOCK_MONOTONIC and
|
|
|
|
CLOCK_MONOTONIC_RAW are supported, some events might also allow
|
|
|
|
CLOCK_BOOTTIME, CLOCK_REALTIME and CLOCK_TAI.
|
|
|
|
|
2015-04-30 14:37:32 +00:00
|
|
|
-S::
|
|
|
|
--snapshot::
|
|
|
|
Select AUX area tracing Snapshot Mode. This option is valid only with an
|
|
|
|
AUX area tracing event. Optionally the number of bytes to capture per
|
|
|
|
snapshot can be specified. In Snapshot Mode, trace data is captured only when
|
|
|
|
signal SIGUSR2 is received.
|
|
|
|
|
2015-06-17 13:51:11 +00:00
|
|
|
--proc-map-timeout::
|
|
|
|
When processing pre-existing threads /proc/XXX/mmap, it may take a long time,
|
|
|
|
because the file may be huge. A time out is needed in such cases.
|
|
|
|
This option sets the time out limit. The default value is 500 ms.
|
|
|
|
|
2015-07-21 09:44:04 +00:00
|
|
|
--switch-events::
|
|
|
|
Record context switch events i.e. events of type PERF_RECORD_SWITCH or
|
|
|
|
PERF_RECORD_SWITCH_CPU_WIDE.
|
|
|
|
|
2015-12-14 10:39:23 +00:00
|
|
|
--clang-path=PATH::
|
2015-10-14 12:41:19 +00:00
|
|
|
Path to clang binary to use for compiling BPF scriptlets.
|
2015-12-14 10:39:23 +00:00
|
|
|
(enabled when BPF support is on)
|
2015-10-14 12:41:19 +00:00
|
|
|
|
2015-12-14 10:39:23 +00:00
|
|
|
--clang-opt=OPTIONS::
|
2015-10-14 12:41:19 +00:00
|
|
|
Options passed to clang when compiling BPF scriptlets.
|
2015-12-14 10:39:23 +00:00
|
|
|
(enabled when BPF support is on)
|
|
|
|
|
|
|
|
--vmlinux=PATH::
|
|
|
|
Specify vmlinux path which has debuginfo.
|
|
|
|
(enabled when BPF prologue is on)
|
2015-10-14 12:41:19 +00:00
|
|
|
|
2016-01-11 13:37:09 +00:00
|
|
|
--buildid-all::
|
|
|
|
Record build-id of all DSOs regardless whether it's actually hit or not.
|
|
|
|
|
2018-11-06 09:07:19 +00:00
|
|
|
--aio[=n]::
|
|
|
|
Use <n> control blocks in asynchronous (Posix AIO) trace writing mode (default: 1, max: 4).
|
2018-11-06 09:04:58 +00:00
|
|
|
Asynchronous mode is supported only when linking Perf tool with libc library
|
|
|
|
providing implementation for Posix AIO API.
|
|
|
|
|
2019-01-22 17:52:03 +00:00
|
|
|
--affinity=mode::
|
|
|
|
Set affinity mask of trace reading thread according to the policy defined by 'mode' value:
|
|
|
|
node - thread affinity mask is set to NUMA node cpu mask of the processed mmap buffer
|
|
|
|
cpu - thread affinity mask is set to cpu of the processed mmap buffer
|
|
|
|
|
2016-02-15 08:34:31 +00:00
|
|
|
--all-kernel::
|
|
|
|
Configure all used events to run in kernel space.
|
|
|
|
|
|
|
|
--all-user::
|
|
|
|
Configure all used events to run in user space.
|
|
|
|
|
2016-04-20 18:59:51 +00:00
|
|
|
--timestamp-filename
|
|
|
|
Append timestamp to output file name.
|
|
|
|
|
perf record: Record the first and last sample time in the header
In the default 'perf record' configuration, all samples are processed,
to create the HEADER_BUILD_ID table. So it's very easy to get the
first/last samples and save the time to perf file header via the
function write_sample_time().
Later, at post processing time, perf report/script will fetch the time
from perf file header.
Committer testing:
# perf record -a sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 2.099 MB perf.data (1101 samples) ]
[root@jouet home]# perf report --header | grep "time of "
# time of first sample : 22947.909226
# time of last sample : 22948.910704
#
# perf report -D | grep PERF_RECORD_SAMPLE\(
0 22947909226101 0x20bb68 [0x30]: PERF_RECORD_SAMPLE(IP, 0x4001): 0/0: 0xffffffffa21b1af3 period: 1 addr: 0
0 22947909229928 0x20bb98 [0x30]: PERF_RECORD_SAMPLE(IP, 0x4001): 0/0: 0xffffffffa200d204 period: 1 addr: 0
<SNIP>
3 22948910397351 0x219360 [0x30]: PERF_RECORD_SAMPLE(IP, 0x4001): 28251/28251: 0xffffffffa22071d8 period: 169518 addr: 0
0 22948910652380 0x20f120 [0x30]: PERF_RECORD_SAMPLE(IP, 0x4001): 0/0: 0xffffffffa2856816 period: 198807 addr: 0
2 22948910704034 0x2172d0 [0x30]: PERF_RECORD_SAMPLE(IP, 0x4001): 0/0: 0xffffffffa2856816 period: 88111 addr: 0
#
Changelog:
v7: Just update the patch description according to Arnaldo's suggestion.
v6: Currently '--buildid-all' is not enabled at default. So the walking
on all samples is the default operation. There is no big overhead
to calculate the timestamp boundary in process_sample_event handler
once we already go through all samples. So the timestamp boundary
calculation is enabled by default when '--buildid-all' is not enabled.
While if '--buildid-all' is enabled, we creates a new option
"--timestamp-boundary" for user to decide if it enables the
timestamp boundary calculation.
v5: There is an issue that the sample walking can only work when
'--buildid-all' is not enabled. So we need to let the walking
be able to work even if '--buildid-all' is enabled and let the
processing skips the dso hit marking for this case.
At first, I want to provide a new option "--record-time-boundaries".
While after consideration, I think a new option is not very
necessary.
v3: Remove the definitions of first_sample_time and last_sample_time
from struct record and directly save them in perf_evlist.
Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1512738826-2628-3-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-12-08 13:13:42 +00:00
|
|
|
--timestamp-boundary::
|
|
|
|
Record timestamp boundary (time of first/last samples).
|
|
|
|
|
2017-01-09 09:51:58 +00:00
|
|
|
--switch-output[=mode]::
|
2016-04-20 18:59:50 +00:00
|
|
|
Generate multiple perf.data files, timestamp prefixed, switching to a new one
|
2017-01-09 09:51:58 +00:00
|
|
|
based on 'mode' value:
|
|
|
|
"signal" - when receiving a SIGUSR2 (default value) or
|
|
|
|
<size> - when reaching the size threshold, size is expected to
|
|
|
|
be a number with appended unit character - B/K/M/G
|
2017-01-09 09:52:00 +00:00
|
|
|
<time> - when reaching the time threshold, size is expected to
|
|
|
|
be a number with appended unit character - s/m/h/d
|
2017-01-09 09:51:58 +00:00
|
|
|
|
|
|
|
Note: the precision of the size threshold hugely depends
|
|
|
|
on your configuration - the number and size of your ring
|
|
|
|
buffers (-m). It is generally more precise for higher sizes
|
|
|
|
(like >5M), for lower values expect different sizes.
|
2016-04-20 18:59:50 +00:00
|
|
|
|
|
|
|
A possible use case is to, given an external event, slice the perf.data file
|
|
|
|
that gets then processed, possibly via a perf script, to decide if that
|
|
|
|
particular perf.data snapshot should be kept or not.
|
|
|
|
|
2016-04-20 18:59:52 +00:00
|
|
|
Implies --timestamp-filename, --no-buildid and --no-buildid-cache.
|
2017-01-03 08:19:56 +00:00
|
|
|
The reason for the latter two is to reduce the data file switching
|
|
|
|
overhead. You can still switch them on with:
|
|
|
|
|
|
|
|
--switch-output --no-no-buildid --no-no-buildid-cache
|
2016-04-20 18:59:51 +00:00
|
|
|
|
2016-06-16 08:02:41 +00:00
|
|
|
--dry-run::
|
|
|
|
Parse options then exit. --dry-run can be used to detect errors in cmdline
|
|
|
|
options.
|
|
|
|
|
|
|
|
'perf record --dry-run -e' can act as a BPF script compiler if llvm.dump-obj
|
|
|
|
in config file is set to true.
|
|
|
|
|
perf record: Add --tail-synthesize option
When working with overwritable ring buffer there's a inconvenience
problem: if perf dumps data after a long period after it starts,
non-sample events may lost, which makes following 'perf report' unable
to identify proc name and mmap layout. For example:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output \
dd if=/dev/zero of=/dev/null
send SIGUSR2 after dd runs long enough. The resuling perf.data lost
correct comm and mmap events:
# perf script -i perf.data.2016061522374354
perf 24478 [004] 2581325.601789: raw_syscalls:sys_exit: NR 0 = 512
^^^^
Should be 'dd'
27b2e8 syscall_slow_exit_work+0xfe2000e3 (/lib/modules/4.6.0-rc3+/build/vmlinux)
203cc7 do_syscall_64+0xfe200117 (/lib/modules/4.6.0-rc3+/build/vmlinux)
b18d83 return_from_SYSCALL_64+0xfe200000 (/lib/modules/4.6.0-rc3+/build/vmlinux)
7f47c417edf0 [unknown] ([unknown])
^^^^^^^^^^^^
Fail to unwind
This patch provides a '--tail-synthesize' option, allows perf to collect
system status when finalizing output file. In resuling output file, the
non-sample events reflect system status when dumping data.
After this patch:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output --tail-synthesize \
dd if=/dev/zero of=/dev/null
# perf script -i perf.data.2016061600544998
dd 27364 [004] 2583244.994464: raw_syscalls:sys_enter: NR 1 (1, ...
^^
Correct comm
203a18 syscall_trace_enter_phase2+0xfe2001a8 ([kernel.kallsyms])
203aa5 syscall_trace_enter+0xfe200055 ([kernel.kallsyms])
203caa do_syscall_64+0xfe2000fa ([kernel.kallsyms])
b18d83 return_from_SYSCALL_64+0xfe200000 ([kernel.kallsyms])
d8e50 __GI___libc_write+0xffff01d9639f4010 (/tmp/oxygen_root-w00229757/lib64/libc-2.18.so)
^^^^^
Correct unwind
This option doesn't aim to solve this problem completely. If a process
terminates before SIGUSR2, we still lost its COMM and MMAP events. For
example, we can't unwind correctly from the final perf.data we get from
the previous example, because when perf collects the final output file
(when we press C-c), 'dd' has been terminated so its '/proc/<pid>/mmap'
becomes empty.
However, this is a cheaper choice. To completely solve this problem we
need to continously output non-sample events. To satisify the
requirement of daemonization, we need to merge them periodically. It is
possible but requires much more code and cycles.
Automatically select --tail-synthesize when --overwrite is provided.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-16-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 08:34:47 +00:00
|
|
|
--tail-synthesize::
|
|
|
|
Instead of collecting non-sample events (for example, fork, comm, mmap) at
|
|
|
|
the beginning of record, collect them during finalizing an output file.
|
|
|
|
The collected non-sample events reflects the status of the system when
|
|
|
|
record is finished.
|
|
|
|
|
perf tools: Enable overwrite settings
This patch allows following config terms and option:
Globally setting events to overwrite;
# perf record --overwrite ...
Set specific events to be overwrite or no-overwrite.
# perf record --event cycles/overwrite/ ...
# perf record --event cycles/no-overwrite/ ...
Add missing config terms and update the config term array size because
the longest string length has changed.
For overwritable events, it automatically selects attr.write_backward
since perf requires it to be backward for reading.
Test result:
# perf record --overwrite -e syscalls:*enter_nanosleep* usleep 1
[ perf record: Woken up 2 times to write data ]
[ perf record: Captured and wrote 0.011 MB perf.data (1 samples) ]
# perf evlist -v
syscalls:sys_enter_nanosleep: type: 2, size: 112, config: 0x134, { sample_period, sample_freq }: 1, sample_type: IP|TID|TIME|CPU|PERIOD|RAW, disabled: 1, inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1, write_backward: 1
# Tip: use 'perf evlist --trace-fields' to show fields for tracepoint events
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-14-git-send-email-wangnan0@huawei.com
Signed-off-by: He Kuang <hekuang@huawei.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 08:34:45 +00:00
|
|
|
--overwrite::
|
|
|
|
Makes all events use an overwritable ring buffer. An overwritable ring
|
|
|
|
buffer works like a flight recorder: when it gets full, the kernel will
|
|
|
|
overwrite the oldest records, that thus will never make it to the
|
|
|
|
perf.data file.
|
|
|
|
|
|
|
|
When '--overwrite' and '--switch-output' are used perf records and drops
|
|
|
|
events until it receives a signal, meaning that something unusual was
|
|
|
|
detected that warrants taking a snapshot of the most current events,
|
|
|
|
those fitting in the ring buffer at that moment.
|
|
|
|
|
|
|
|
'overwrite' attribute can also be set or canceled for an event using
|
|
|
|
config terms. For example: 'cycles/overwrite/' and 'instructions/no-overwrite/'.
|
|
|
|
|
perf record: Add --tail-synthesize option
When working with overwritable ring buffer there's a inconvenience
problem: if perf dumps data after a long period after it starts,
non-sample events may lost, which makes following 'perf report' unable
to identify proc name and mmap layout. For example:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output \
dd if=/dev/zero of=/dev/null
send SIGUSR2 after dd runs long enough. The resuling perf.data lost
correct comm and mmap events:
# perf script -i perf.data.2016061522374354
perf 24478 [004] 2581325.601789: raw_syscalls:sys_exit: NR 0 = 512
^^^^
Should be 'dd'
27b2e8 syscall_slow_exit_work+0xfe2000e3 (/lib/modules/4.6.0-rc3+/build/vmlinux)
203cc7 do_syscall_64+0xfe200117 (/lib/modules/4.6.0-rc3+/build/vmlinux)
b18d83 return_from_SYSCALL_64+0xfe200000 (/lib/modules/4.6.0-rc3+/build/vmlinux)
7f47c417edf0 [unknown] ([unknown])
^^^^^^^^^^^^
Fail to unwind
This patch provides a '--tail-synthesize' option, allows perf to collect
system status when finalizing output file. In resuling output file, the
non-sample events reflect system status when dumping data.
After this patch:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output --tail-synthesize \
dd if=/dev/zero of=/dev/null
# perf script -i perf.data.2016061600544998
dd 27364 [004] 2583244.994464: raw_syscalls:sys_enter: NR 1 (1, ...
^^
Correct comm
203a18 syscall_trace_enter_phase2+0xfe2001a8 ([kernel.kallsyms])
203aa5 syscall_trace_enter+0xfe200055 ([kernel.kallsyms])
203caa do_syscall_64+0xfe2000fa ([kernel.kallsyms])
b18d83 return_from_SYSCALL_64+0xfe200000 ([kernel.kallsyms])
d8e50 __GI___libc_write+0xffff01d9639f4010 (/tmp/oxygen_root-w00229757/lib64/libc-2.18.so)
^^^^^
Correct unwind
This option doesn't aim to solve this problem completely. If a process
terminates before SIGUSR2, we still lost its COMM and MMAP events. For
example, we can't unwind correctly from the final perf.data we get from
the previous example, because when perf collects the final output file
(when we press C-c), 'dd' has been terminated so its '/proc/<pid>/mmap'
becomes empty.
However, this is a cheaper choice. To completely solve this problem we
need to continously output non-sample events. To satisify the
requirement of daemonization, we need to merge them periodically. It is
possible but requires much more code and cycles.
Automatically select --tail-synthesize when --overwrite is provided.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-16-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 08:34:47 +00:00
|
|
|
Implies --tail-synthesize.
|
|
|
|
|
2009-04-20 13:58:01 +00:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2009-06-06 12:56:33 +00:00
|
|
|
linkperf:perf-stat[1], linkperf:perf-list[1]
|