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]
|
2017-10-13 23:10:12 +08:00
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-a] <command>
|
2021-08-09 23:32:26 +08:00
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-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)
|
|
|
|
|
2021-11-23 16:46:12 +08:00
|
|
|
- a raw PMU event in the form of rN where N is a hexadecimal value
|
|
|
|
that represents the raw register encoding with the layout of the
|
|
|
|
event control registers as described by entries in
|
2022-06-03 12:57:44 +08:00
|
|
|
/sys/bus/event_source/devices/cpu/format/*.
|
2009-11-23 22:42:35 +08:00
|
|
|
|
2020-09-02 05:58:53 +08:00
|
|
|
- a symbolic or raw PMU event followed by an optional colon
|
|
|
|
and a list of event modifiers, e.g., cpu-cycles:p. See the
|
|
|
|
linkperf:perf-list[1] man page for details on event modifiers.
|
|
|
|
|
2015-01-08 09:13:53 +08: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 22:38:33 +08:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*.
|
2015-01-08 09:13:53 +08: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 22:38:33 +08:00
|
|
|
corresponding entries in /sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 09:13:53 +08:00
|
|
|
param1 and param2 are defined as formats for the PMU in:
|
2016-09-23 22:38:33 +08:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 09:13:53 +08:00
|
|
|
|
2016-10-14 01:57:13 +08:00
|
|
|
There are also some parameters which are not defined in .../<pmu>/format/*.
|
2015-07-29 17:42:11 +08:00
|
|
|
These params can be used to overload default config values per event.
|
2016-10-14 01:57:13 +08:00
|
|
|
Here are some common parameters:
|
2015-07-08 16:44:54 +08:00
|
|
|
- 'period': Set event sampling period
|
2015-08-09 14:45:23 +08:00
|
|
|
- 'freq': Set event sampling frequency
|
2015-08-04 16:30:19 +08: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 18:30:47 +08:00
|
|
|
- 'call-graph': Disable/enable callgraph. Acceptable str are "fp" for
|
2015-08-11 18:30:48 +08: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 18:30:47 +08: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 14:50:56 +08: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\'.
|
2019-08-06 16:46:05 +08:00
|
|
|
- 'aux-output': Generate AUX records instead of events. This requires
|
|
|
|
that an AUX area event is also provided.
|
2019-11-15 20:42:17 +08:00
|
|
|
- 'aux-sample-size': Set sample size for AUX area sampling. If the
|
|
|
|
'--aux-sample' option has been used, set aux-sample-size=0 to disable
|
|
|
|
AUX area sampling for the event.
|
2016-10-14 01:57:13 +08:00
|
|
|
|
|
|
|
See the linkperf:perf-list[1] man page for more parameters.
|
|
|
|
|
2015-07-08 16:44:54 +08:00
|
|
|
Note: If user explicitly sets options which conflict with the params,
|
2016-10-14 01:57:13 +08:00
|
|
|
the value set by the parameters will be overridden.
|
2015-07-08 16:44:54 +08:00
|
|
|
|
2016-09-07 00:37:15 +08: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 23:26:51 +08:00
|
|
|
- a hardware breakpoint event in the form of '\mem:addr[/len][:access]'
|
2009-11-23 22:42:35 +08: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 23:26:51 +08: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 22:42:35 +08:00
|
|
|
If you want to profile read-write accesses in 0x1000, just set
|
|
|
|
'mem:0x1000:rw'.
|
2014-05-29 23:26:51 +08:00
|
|
|
If you want to profile write accesses in [0x1000~1008), just set
|
|
|
|
'mem:0x1000/8:w'.
|
2010-12-01 09:57:16 +08:00
|
|
|
|
2019-02-01 21:46:51 +08: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 11:13:33 +08: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 09:57:16 +08:00
|
|
|
--filter=<filter>::
|
2018-07-09 18:57:15 +08:00
|
|
|
Event filter. This option should follow an event selector (-e) which
|
2016-09-23 22:38:39 +08: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 15:36:10 +08:00
|
|
|
using '&&'.
|
2016-09-23 22:38:39 +08: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 15:36:10 +08:00
|
|
|
|
|
|
|
--exclude-perf::
|
|
|
|
Don't record events issued by perf itself. This option should follow
|
2018-07-09 18:57:15 +08:00
|
|
|
an event selector (-e) which selects tracepoint event(s). It adds a
|
2015-07-10 15:36:10 +08: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 09:57:16 +08:00
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
-a::
|
2010-12-01 09:57:16 +08:00
|
|
|
--all-cpus::
|
2017-02-18 01:00:18 +08:00
|
|
|
System-wide collection from all CPUs (default if no target is specified).
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-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).
|
2013-11-18 17:55:57 +08:00
|
|
|
This option also disables inheritance by default. Enable it by adding
|
|
|
|
--inherit.
|
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
|
|
|
|
2014-01-15 04:52:14 +08: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 22:59:36 +08:00
|
|
|
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.
|
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-02 01:52:50 +08:00
|
|
|
|
2009-08-05 21:04:53 +08: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-02 00:46:23 +08: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-02 01:52:50 +08: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 21:04:53 +08:00
|
|
|
|
|
|
|
-m::
|
|
|
|
--mmap-pages=::
|
2013-09-01 18:36:13 +08: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 23:53:46 +08:00
|
|
|
Also, by adding a comma, the number of mmap pages for AUX
|
|
|
|
area tracing can be specified.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2015-03-02 11:13:33 +08: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 21:04:53 +08:00
|
|
|
-g::
|
2020-03-26 00:40:53 +08:00
|
|
|
Enables call-graph (stack chain/backtrace) recording for both
|
|
|
|
kernel space and user space.
|
2013-10-26 22:25:33 +08:00
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
--call-graph::
|
2013-10-26 22:25:33 +08:00
|
|
|
Setup and enable call-graph (stack chain/backtrace) recording,
|
2020-03-26 00:40:53 +08:00
|
|
|
implies -g. Default is "fp" (for user space).
|
2013-10-26 22:25:33 +08:00
|
|
|
|
2020-03-26 00:40:53 +08:00
|
|
|
The unwinding method used for kernel space is dependent on the
|
|
|
|
unwinder used by the active kernel configuration, i.e
|
|
|
|
CONFIG_UNWINDER_FRAME_POINTER (fp) or CONFIG_UNWINDER_ORC (orc)
|
|
|
|
|
|
|
|
Any option specified here controls the method used for user space.
|
|
|
|
|
|
|
|
Valid options are "fp" (frame pointer), "dwarf" (DWARF's CFI -
|
|
|
|
Call Frame Information) or "lbr" (Hardware Last Branch Record
|
|
|
|
facility).
|
2013-10-26 22:25:33 +08:00
|
|
|
|
|
|
|
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 22:28:32 +08:00
|
|
|
the libunwind or libdw library) should be used instead.
|
2015-01-06 02:23:04 +08: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 20:13:50 +08:00
|
|
|
main limitation is that it is only available on new Intel
|
2015-01-06 02:23:04 +08: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 21:04:53 +08: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 22:28:32 +08: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-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::
|
2015-05-09 23:19:42 +08:00
|
|
|
Record per-thread event counts. Use it with 'perf report -T' to see
|
|
|
|
the values.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
|
|
|
-d::
|
|
|
|
--data::
|
2017-08-30 01:11:08 +08:00
|
|
|
Record the sample virtual addresses.
|
|
|
|
|
|
|
|
--phys-data::
|
|
|
|
Record the sample physical addresses.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2020-12-01 01:27:53 +08:00
|
|
|
--data-page-size::
|
|
|
|
Record the sampled data address data page size.
|
|
|
|
|
2021-01-06 03:57:49 +08:00
|
|
|
--code-page-size::
|
|
|
|
Record the sampled code address (ip) page size
|
|
|
|
|
2010-12-02 20:25:28 +08:00
|
|
|
-T::
|
|
|
|
--timestamp::
|
2015-06-10 22:48:50 +08: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 20:25:28 +08:00
|
|
|
|
2016-08-02 02:02:35 +08:00
|
|
|
--sample-cpu::
|
|
|
|
Record the sample cpu.
|
|
|
|
|
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.
|
|
|
|
|
2015-12-15 09:49:56 +08: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 17:39:01 +08:00
|
|
|
-N::
|
|
|
|
--no-buildid-cache::
|
2014-09-09 23:18:50 +08:00
|
|
|
Do not update the buildid cache. This saves some overhead in situations
|
2010-06-17 17:39:01 +08:00
|
|
|
where the information in the perf.data file (which includes buildids)
|
2015-12-15 09:49:56 +08:00
|
|
|
is sufficient. You can also set the "record.build-id" config variable to
|
|
|
|
'no-cache' to have the same effect.
|
2010-06-17 17:39:01 +08: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 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
|
2018-01-29 23:48:09 +08: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 17:20:01 +08:00
|
|
|
|
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
|
2015-10-13 15:09:11 +08:00
|
|
|
- call: direct calls, including far (to/from kernel) calls
|
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
|
2014-05-22 15:20:10 +08:00
|
|
|
- cond: conditional branches
|
2017-07-18 20:13:11 +08:00
|
|
|
- save_type: save branch type during sampling in case binary is not available later
|
2012-02-10 06:21:02 +08:00
|
|
|
|
|
|
|
+
|
2014-05-22 15:20:10 +08:00
|
|
|
The option requires at least one branch type among any, any_call, any_ret, ind_call, cond.
|
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.
|
|
|
|
|
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-08 04:41:43 +08:00
|
|
|
--namespaces::
|
2020-03-25 20:45:34 +08:00
|
|
|
Record events of type PERF_RECORD_NAMESPACES. This enables 'cgroup_id' sort key.
|
|
|
|
|
|
|
|
--all-cgroups::
|
|
|
|
Record events of type PERF_RECORD_CGROUP. This enables 'cgroup' sort key.
|
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-08 04:41:43 +08:00
|
|
|
|
2013-09-20 22:40:43 +08:00
|
|
|
--transaction::
|
|
|
|
Record transaction flags for transaction related events.
|
|
|
|
|
2013-11-15 21:52:29 +08: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 21:51:34 +08:00
|
|
|
|
2014-01-15 04:58:12 +08:00
|
|
|
-D::
|
|
|
|
--delay=::
|
2020-07-17 15:07:03 +08:00
|
|
|
After starting the program, wait msecs before measuring (-1: start with events
|
|
|
|
disabled). This is useful to filter out the startup phase of the program, which
|
|
|
|
is often very different.
|
2014-01-12 05:38:27 +08:00
|
|
|
|
2014-09-24 19:48:41 +08: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-09-01 00:41:12 +08: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-06 01:00:28 +08:00
|
|
|
--user-regs::
|
2019-05-15 04:19:32 +08:00
|
|
|
Similar to -I, but capture user registers at sample time. To list the available
|
|
|
|
user registers use --user-regs=\?.
|
2014-09-24 19:48:41 +08:00
|
|
|
|
2015-02-25 07:13:40 +08:00
|
|
|
--running-time::
|
|
|
|
Record running and enabled time for read events (:S)
|
|
|
|
|
2015-03-31 06:19:31 +08: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 22:37:32 +08:00
|
|
|
-S::
|
|
|
|
--snapshot::
|
|
|
|
Select AUX area tracing Snapshot Mode. This option is valid only with an
|
2019-08-06 22:41:01 +08:00
|
|
|
AUX area tracing event. Optionally, certain snapshot capturing parameters
|
|
|
|
can be specified in a string that follows this option:
|
|
|
|
'e': take one last snapshot on exit; guarantees that there is at least one
|
|
|
|
snapshot in the output file;
|
|
|
|
<size>: if the PMU supports this, specify the desired snapshot size.
|
|
|
|
|
|
|
|
In Snapshot Mode trace data is captured only when signal SIGUSR2 is received
|
|
|
|
and on exit if the above 'e' option is given.
|
2015-04-30 22:37:32 +08:00
|
|
|
|
2019-11-15 20:42:16 +08:00
|
|
|
--aux-sample[=OPTIONS]::
|
|
|
|
Select AUX area sampling. At least one of the events selected by the -e option
|
|
|
|
must be an AUX area event. Samples on other events will be created containing
|
|
|
|
data from the AUX area. Optionally sample size may be specified, otherwise it
|
|
|
|
defaults to 4KiB.
|
|
|
|
|
2015-06-17 21:51:11 +08: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 17:44:04 +08:00
|
|
|
--switch-events::
|
|
|
|
Record context switch events i.e. events of type PERF_RECORD_SWITCH or
|
2021-11-11 21:36:23 +08:00
|
|
|
PERF_RECORD_SWITCH_CPU_WIDE. In some cases (e.g. Intel PT, CoreSight or Arm SPE)
|
2020-05-28 20:08:58 +08:00
|
|
|
switch events will be enabled automatically, which can be suppressed by
|
|
|
|
by the option --no-switch-events.
|
2015-07-21 17:44:04 +08:00
|
|
|
|
2015-12-14 18:39:23 +08:00
|
|
|
--clang-path=PATH::
|
2015-10-14 20:41:19 +08:00
|
|
|
Path to clang binary to use for compiling BPF scriptlets.
|
2015-12-14 18:39:23 +08:00
|
|
|
(enabled when BPF support is on)
|
2015-10-14 20:41:19 +08:00
|
|
|
|
2015-12-14 18:39:23 +08:00
|
|
|
--clang-opt=OPTIONS::
|
2015-10-14 20:41:19 +08:00
|
|
|
Options passed to clang when compiling BPF scriptlets.
|
2015-12-14 18:39:23 +08:00
|
|
|
(enabled when BPF support is on)
|
|
|
|
|
|
|
|
--vmlinux=PATH::
|
|
|
|
Specify vmlinux path which has debuginfo.
|
|
|
|
(enabled when BPF prologue is on)
|
2015-10-14 20:41:19 +08:00
|
|
|
|
2016-01-11 21:37:09 +08:00
|
|
|
--buildid-all::
|
|
|
|
Record build-id of all DSOs regardless whether it's actually hit or not.
|
|
|
|
|
perf record: Add --buildid-mmap option to enable PERF_RECORD_MMAP2's build id
Add --buildid-mmap option to enable build id in PERF_RECORD_MMAP2 events.
It will only work if there's kernel support for that and it disables
build id cache (implies --no-buildid).
It's also possible to enable it permanently via config option in
~/.perfconfig file:
[record]
build-id=mmap
Also added build_id bit in the verbose output for perf_event_attr:
# perf record --buildid-mmap -vv
...
perf_event_attr:
type 1
size 120
...
build_id 1
Adding also missing text_poke bit.
Committer testing:
$ perf record -h build
Usage: perf record [<options>] [<command>]
or: perf record [<options>] -- <command> [<options>]
-B, --no-buildid do not collect buildids in perf.data
-N, --no-buildid-cache
do not update the buildid cache
--buildid-all Record build-id of all DSOs regardless of hits
--buildid-mmap Record build-id in map events
$
$ perf record --buildid-mmap sleep 1
Failed: no support to record build id in mmap events, update your kernel.
$
After adding the needed kernel bits in a test kernel:
$ perf record -vv --buildid-mmap sleep 1 |& grep -m1 build
Enabling build id in mmap2 events.
$ perf evlist -v
cycles:u: size: 120, { sample_period, sample_freq }: 4000, sample_type: IP|TID|TIME|PERIOD, read_format: ID, disabled: 1, inherit: 1, exclude_kernel: 1, mmap: 1, comm: 1, freq: 1, enable_on_exec: 1, task: 1, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1, ksymbol: 1, bpf_event: 1, build_id: 1
$
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Ian Rogers <irogers@google.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Budankov <abudankov@huawei.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Song Liu <songliubraving@fb.com>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20201214105457.543111-16-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-12-14 18:54:57 +08:00
|
|
|
--buildid-mmap::
|
|
|
|
Record build ids in mmap2 events, disables build id cache (implies --no-buildid).
|
|
|
|
|
2018-11-06 17:07:19 +08:00
|
|
|
--aio[=n]::
|
|
|
|
Use <n> control blocks in asynchronous (Posix AIO) trace writing mode (default: 1, max: 4).
|
2018-11-06 17:04:58 +08:00
|
|
|
Asynchronous mode is supported only when linking Perf tool with libc library
|
|
|
|
providing implementation for Posix AIO API.
|
|
|
|
|
2019-01-23 01:52:03 +08: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
|
|
|
|
|
perf record: Implement --mmap-flush=<number> option
Implement a --mmap-flush option that specifies minimal number of bytes
that is extracted from mmaped kernel buffer to store into a trace. The
default option value is 1 byte what means every time trace writing
thread finds some new data in the mmaped buffer the data is extracted,
possibly compressed and written to a trace.
$ tools/perf/perf record --mmap-flush 1024 -e cycles -- matrix.gcc
$ tools/perf/perf record --aio --mmap-flush 1K -e cycles -- matrix.gcc
The option is independent from -z setting, doesn't vary with compression
level and can serve two purposes.
The first purpose is to increase the compression ratio of a trace data.
Larger data chunks are compressed more effectively so the implemented
option allows specifying data chunk size to compress. Also at some cases
executing more write syscalls with smaller data size can take longer
than executing less write syscalls with bigger data size due to syscall
overhead so extracting bigger data chunks specified by the option value
could additionally decrease runtime overhead.
The second purpose is to avoid self monitoring live-lock issue in system
wide (-a) profiling mode. Profiling in system wide mode with compression
(-a -z) can additionally induce data into the kernel buffers along with
the data from monitored processes. If performance data rate and volume
from the monitored processes is high then trace streaming and
compression activity in the tool is also high. High tool process
activity can lead to subtle live-lock effect when compression of single
new byte from some of mmaped kernel buffer leads to generation of the
next single byte at some mmaped buffer. So perf tool process ends up in
endless self monitoring.
Implemented synch parameter is the mean to force data move independently
from the specified flush threshold value. Despite the provided flush
value the tool needs capability to unconditionally drain memory buffers,
at least in the end of the collection.
Committer testing:
Running with the default value, i.e. as soon as there is something to
read go on consuming, we first write the synthesized events, small
chunks of about 128 bytes:
# perf trace -m 2048 --call-graph dwarf -e write -- perf record
<SNIP>
101.142 ( 0.004 ms): perf/25821 write(fd: 3</root/perf.data>, buf: 0x210db60, count: 120) = 120
__libc_write (/usr/lib64/libpthread-2.28.so)
ion (/home/acme/bin/perf)
record__write (inlined)
process_synthesized_event (/home/acme/bin/perf)
perf_tool__process_synth_event (inlined)
perf_event__synthesize_mmap_events (/home/acme/bin/perf)
Then we move to reading the mmap buffers consuming the events put there
by the kernel perf infrastructure:
107.561 ( 0.005 ms): perf/25821 write(fd: 3</root/perf.data>, buf: 0x7f1befc02000, count: 336) = 336
__libc_write (/usr/lib64/libpthread-2.28.so)
ion (/home/acme/bin/perf)
record__write (inlined)
record__pushfn (/home/acme/bin/perf)
perf_mmap__push (/home/acme/bin/perf)
record__mmap_read_evlist (inlined)
record__mmap_read_all (inlined)
__cmd_record (inlined)
cmd_record (/home/acme/bin/perf)
12919.953 ( 0.136 ms): perf/25821 write(fd: 3</root/perf.data>, buf: 0x7f1befc83150, count: 184984) = 184984
<SNIP same backtrace as in the 107.561 timestamp>
12920.094 ( 0.155 ms): perf/25821 write(fd: 3</root/perf.data>, buf: 0x7f1befc02150, count: 261816) = 261816
<SNIP same backtrace as in the 107.561 timestamp>
12920.253 ( 0.093 ms): perf/25821 write(fd: 3</root/perf.data>, buf: 0x7f1befb81120, count: 170832) = 170832
<SNIP same backtrace as in the 107.561 timestamp>
If we limit it to write only when more than 16MB are available for
reading, it throttles that to a quarter of the --mmap-pages set for
'perf record', which by default get to 528384 bytes, found out using
'record -v':
mmap flush: 132096
mmap size 528384B
With that in place all the writes coming from
record__mmap_read_evlist(), i.e. from the mmap buffers setup by the
kernel perf infrastructure were at least 132096 bytes long.
Trying with a bigger mmap size:
perf trace -e write perf record -v -m 2048 --mmap-flush 16M
74982.928 ( 2.471 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff94a6cc000, count: 3580888) = 3580888
74985.406 ( 2.353 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff949ecb000, count: 3453256) = 3453256
74987.764 ( 2.629 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff9496ca000, count: 3859232) = 3859232
74990.399 ( 2.341 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff948ec9000, count: 3769032) = 3769032
74992.744 ( 2.064 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff9486c8000, count: 3310520) = 3310520
74994.814 ( 2.619 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff947ec7000, count: 4194688) = 4194688
74997.439 ( 2.787 ms): perf/26500 write(fd: 3</root/perf.data>, buf: 0x7ff9476c6000, count: 4029760) = 4029760
Was again limited to a quarter of the mmap size:
mmap flush: 2098176
mmap size 8392704B
A warning about that would be good to have but can be added later,
something like:
"max flush is a quarter of the mmap size, if wanting to bump the mmap
flush further, bump the mmap size as well using -m/--mmap-pages"
Also rename the 'sync' parameters to 'synch' to keep tools/perf building
with older glibcs:
cc1: warnings being treated as errors
builtin-record.c: In function 'record__mmap_read_evlist':
builtin-record.c:775: warning: declaration of 'sync' shadows a global declaration
/usr/include/unistd.h:933: warning: shadowed declaration is here
builtin-record.c: In function 'record__mmap_read_all':
builtin-record.c:856: warning: declaration of 'sync' shadows a global declaration
/usr/include/unistd.h:933: warning: shadowed declaration is here
Signed-off-by: Alexey Budankov <alexey.budankov@linux.intel.com>
Reviewed-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: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/f6600d72-ecfa-2eb7-7e51-f6954547d500@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2019-03-19 01:40:26 +08:00
|
|
|
--mmap-flush=number::
|
|
|
|
|
|
|
|
Specify minimal number of bytes that is extracted from mmap data pages and
|
|
|
|
processed for output. One can specify the number using B/K/M/G suffixes.
|
|
|
|
|
|
|
|
The maximal allowed value is a quarter of the size of mmaped data pages.
|
|
|
|
|
|
|
|
The default option value is 1 byte which means that every time that the output
|
|
|
|
writing thread finds some new data in the mmaped buffer the data is extracted,
|
|
|
|
possibly compressed (-z) and written to the output, perf.data or pipe.
|
|
|
|
|
|
|
|
Larger data chunks are compressed more effectively in comparison to smaller
|
|
|
|
chunks so extraction of larger chunks from the mmap data pages is preferable
|
|
|
|
from the perspective of output size reduction.
|
|
|
|
|
|
|
|
Also at some cases executing less output write syscalls with bigger data size
|
|
|
|
can take less time than executing more output write syscalls with smaller data
|
|
|
|
size thus lowering runtime profiling overhead.
|
|
|
|
|
perf record: Implement -z,--compression_level[=<n>] option
Implemented -z,--compression_level[=<n>] option that enables compression
of mmaped kernel data buffers content in runtime during perf record mode
collection. Default option value is 1 (fastest compression).
Compression overhead has been measured for serial and AIO streaming when
profiling matrix multiplication workload:
-------------------------------------------------------------
| SERIAL | AIO-1 |
----------------------------------------------------------------|
|-z | OVH(x) | ratio(x) size(MiB) | OVH(x) | ratio(x) size(MiB) |
|---------------------------------------------------------------|
| 0 | 1,00 | 1,000 179,424 | 1,00 | 1,000 187,527 |
| 1 | 1,04 | 8,427 181,148 | 1,01 | 8,474 188,562 |
| 2 | 1,07 | 8,055 186,953 | 1,03 | 7,912 191,773 |
| 3 | 1,04 | 8,283 181,908 | 1,03 | 8,220 191,078 |
| 5 | 1,09 | 8,101 187,705 | 1,05 | 7,780 190,065 |
| 8 | 1,05 | 9,217 179,191 | 1,12 | 6,111 193,024 |
-----------------------------------------------------------------
OVH = (Execution time with -z N) / (Execution time with -z 0)
ratio - compression ratio
size - number of bytes that was compressed
size ~= trace size x ratio
Committer notes:
Testing it I noticed that it failed to disable build id processing when
compression is enabled, and as we'd have to uncompress everything to
look for the PERF_RECORD_{MMAP,SAMPLE,etc} to figure out which build ids
to read from DSOs, we better disable build id processing when
compression is enabled, logging with pr_debug() when doing so:
Original patch:
# perf record -z2
^C[ perf record: Woken up 1 times to write data ]
0x1746e0 [0x76]: failed to process type: 81 [Invalid argument]
[ perf record: Captured and wrote 1.568 MB perf.data, compressed (original 0.452 MB, ratio is 3.995) ]
#
After auto-disabling build id processing when compression is enabled:
$ perf record -z2 sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.001 MB perf.data, compressed (original 0.001 MB, ratio is 2.292) ]
$ perf record -v -z2 sleep 1
Compression enabled, disabling build id collection at the end of the session.
<SNIP extra -v pr_debug() messages>
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.001 MB perf.data, compressed (original 0.001 MB, ratio is 2.305) ]
$
Also, with parts of the patch originally after this one moved to just
before this one we get:
$ perf record -z2 sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.001 MB perf.data, compressed (original 0.001 MB, ratio is 2.371) ]
$ perf report -D | grep COMPRESS
0 0x1b8 [0x155]: PERF_RECORD_COMPRESSED: unhandled!
0 0x30d [0x80]: PERF_RECORD_COMPRESSED: unhandled!
COMPRESSED events: 2
COMPRESSED events: 0
$
I.e. when faced with PERF_RECORD_COMPRESSED that we still have no code
to process, we just show it as not being handled, skip them and
continue, while before we had:
$ perf report -D | grep COMPRESS
0x1b8 [0x169]: failed to process type: 81 [Invalid argument]
Error:
failed to process sample
0 0x1b8 [0x169]: PERF_RECORD_COMPRESSED
$
Signed-off-by: Alexey Budankov <alexey.budankov@linux.intel.com>
Reviewed-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: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/9ff06518-ae63-a908-e44d-5d9e56dd66d9@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2019-03-19 01:44:42 +08:00
|
|
|
-z::
|
|
|
|
--compression-level[=n]::
|
|
|
|
Produce compressed trace using specified level n (default: 1 - fastest compression,
|
|
|
|
22 - smallest trace)
|
|
|
|
|
2016-02-15 16:34:31 +08:00
|
|
|
--all-kernel::
|
|
|
|
Configure all used events to run in kernel space.
|
|
|
|
|
|
|
|
--all-user::
|
|
|
|
Configure all used events to run in user space.
|
|
|
|
|
2019-05-30 21:29:22 +08:00
|
|
|
--kernel-callchains::
|
|
|
|
Collect callchains only from kernel space. I.e. this option sets
|
|
|
|
perf_event_attr.exclude_callchain_user to 1.
|
|
|
|
|
|
|
|
--user-callchains::
|
|
|
|
Collect callchains only from user space. I.e. this option sets
|
|
|
|
perf_event_attr.exclude_callchain_kernel to 1.
|
|
|
|
|
|
|
|
Don't use both --kernel-callchains and --user-callchains at the same time or no
|
|
|
|
callchains will be collected.
|
|
|
|
|
2016-04-21 02:59:51 +08: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 21:13:42 +08:00
|
|
|
--timestamp-boundary::
|
|
|
|
Record timestamp boundary (time of first/last samples).
|
|
|
|
|
2017-01-09 17:51:58 +08:00
|
|
|
--switch-output[=mode]::
|
2016-04-21 02:59:50 +08:00
|
|
|
Generate multiple perf.data files, timestamp prefixed, switching to a new one
|
2017-01-09 17:51:58 +08: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 17:52:00 +08: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 17:51:58 +08: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-21 02:59:50 +08: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-21 02:59:52 +08:00
|
|
|
Implies --timestamp-filename, --no-buildid and --no-buildid-cache.
|
2017-01-03 16:19:56 +08: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-21 02:59:51 +08:00
|
|
|
|
2020-04-28 04:56:37 +08:00
|
|
|
--switch-output-event::
|
|
|
|
Events that will cause the switch of the perf.data file, auto-selecting
|
|
|
|
--switch-output=signal, the results are similar as internally the side band
|
|
|
|
thread will also send a SIGUSR2 to the main one.
|
|
|
|
|
|
|
|
Uses the same syntax as --event, it will just not be recorded, serving only to
|
|
|
|
switch the perf.data file as soon as the --switch-output event is processed by
|
|
|
|
a separate sideband thread.
|
|
|
|
|
|
|
|
This sideband thread is also used to other purposes, like processing the
|
|
|
|
PERF_RECORD_BPF_EVENT records as they happen, asking the kernel for extra BPF
|
|
|
|
information, etc.
|
|
|
|
|
2019-03-15 06:49:55 +08:00
|
|
|
--switch-max-files=N::
|
|
|
|
|
|
|
|
When rotating perf.data with --switch-output, only keep N files.
|
|
|
|
|
2016-06-16 16:02:41 +08: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.
|
|
|
|
|
2021-08-11 12:46:58 +08:00
|
|
|
--synth=TYPE::
|
|
|
|
Collect and synthesize given type of events (comma separated). Note that
|
|
|
|
this option controls the synthesis from the /proc filesystem which represent
|
|
|
|
task status for pre-existing threads.
|
|
|
|
|
|
|
|
Kernel (and some other) events are recorded regardless of the
|
|
|
|
choice in this option. For example, --synth=no would have MMAP events for
|
|
|
|
kernel and modules.
|
|
|
|
|
|
|
|
Available types are:
|
|
|
|
'task' - synthesize FORK and COMM events for each task
|
|
|
|
'mmap' - synthesize MMAP events for each process (implies 'task')
|
|
|
|
'cgroup' - synthesize CGROUP events for each cgroup
|
|
|
|
'all' - synthesize all events (default)
|
|
|
|
'no' - do not synthesize any of the above events
|
|
|
|
|
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 16:34:47 +08: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 16:34:45 +08: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 16:34:47 +08:00
|
|
|
Implies --tail-synthesize.
|
|
|
|
|
perf record: Put a copy of kcore into the perf.data directory
Add a new 'perf record' option '--kcore' which will put a copy of
/proc/kcore, kallsyms and modules into a perf.data directory. Note, that
without the --kcore option, output goes to a file as previously. The
tools' -o and -i options work with either a file name or directory name.
Example:
$ sudo perf record --kcore uname
$ sudo tree perf.data
perf.data
├── kcore_dir
│ ├── kallsyms
│ ├── kcore
│ └── modules
└── data
$ sudo perf script -v
build id event received for vmlinux: 1eaa285996affce2d74d8e66dcea09a80c9941de
build id event received for [vdso]: 8bbaf5dc62a9b644b4d4e4539737e104e4a84541
Samples for 'cycles' event do not have CPU attribute set. Skipping 'cpu' field.
Using CPUID GenuineIntel-6-8E-A
Using perf.data/kcore_dir/kcore for kernel data
Using perf.data/kcore_dir/kallsyms for symbols
perf 19058 506778.423729: 1 cycles: ffffffffa2caa548 native_write_msr+0x8 (vmlinux)
perf 19058 506778.423733: 1 cycles: ffffffffa2caa548 native_write_msr+0x8 (vmlinux)
perf 19058 506778.423734: 7 cycles: ffffffffa2caa548 native_write_msr+0x8 (vmlinux)
perf 19058 506778.423736: 117 cycles: ffffffffa2caa54a native_write_msr+0xa (vmlinux)
perf 19058 506778.423738: 2092 cycles: ffffffffa2c9b7b0 native_apic_msr_write+0x0 (vmlinux)
perf 19058 506778.423740: 37380 cycles: ffffffffa2f121d0 perf_event_addr_filters_exec+0x0 (vmlinux)
uname 19058 506778.423751: 582673 cycles: ffffffffa303a407 propagate_protected_usage+0x147 (vmlinux)
uname 19058 506778.423892: 2241841 cycles: ffffffffa2cae0c9 unwind_next_frame.part.5+0x79 (vmlinux)
uname 19058 506778.424430: 2457397 cycles: ffffffffa3019232 check_memory_region+0x52 (vmlinux)
Committer testing:
# rm -rf perf.data*
# perf record sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.024 MB perf.data (7 samples) ]
# ls -l perf.data
-rw-------. 1 root root 34772 Oct 21 11:08 perf.data
# perf record --kcore uname
Linux
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.024 MB perf.data (7 samples) ]
ls[root@quaco ~]# ls -lad perf.data*
drwx------. 3 root root 4096 Oct 21 11:08 perf.data
-rw-------. 1 root root 34772 Oct 21 11:08 perf.data.old
# perf evlist -v
cycles: size: 112, { sample_period, sample_freq }: 4000, sample_type: IP|TID|TIME|PERIOD, read_format: ID, 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, ksymbol: 1, bpf_event: 1
# perf evlist -v -i perf.data/data
cycles: size: 112, { sample_period, sample_freq }: 4000, sample_type: IP|TID|TIME|PERIOD, read_format: ID, 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, ksymbol: 1, bpf_event: 1
#
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Reviewed-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Link: http://lore.kernel.org/lkml/20191004083121.12182-6-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2019-10-04 16:31:21 +08:00
|
|
|
--kcore::
|
|
|
|
Make a copy of /proc/kcore and place it into a directory with the perf data file.
|
|
|
|
|
2019-10-22 16:09:01 +08:00
|
|
|
--max-size=<size>::
|
|
|
|
Limit the sample data max size, <size> is expected to be a number with
|
|
|
|
appended unit character - B/K/M/G
|
|
|
|
|
2020-04-22 23:50:38 +08:00
|
|
|
--num-thread-synthesize::
|
|
|
|
The number of threads to run when synthesizing events for existing processes.
|
|
|
|
By default, the number of threads equals 1.
|
|
|
|
|
2020-05-06 02:29:43 +08:00
|
|
|
ifdef::HAVE_LIBPFM[]
|
|
|
|
--pfm-events events::
|
|
|
|
Select a PMU event using libpfm4 syntax (see http://perfmon2.sf.net)
|
|
|
|
including support for event filters. For example '--pfm-events
|
|
|
|
inst_retired:any_p:u:c=1:i'. More than one event can be passed to the
|
|
|
|
option using the comma separator. Hardware events and generic hardware
|
|
|
|
events cannot be mixed together. The latter must be used with the -e
|
|
|
|
option. The -e option and this one can be mixed and matched. Events
|
|
|
|
can be grouped using the {} notation.
|
|
|
|
endif::HAVE_LIBPFM[]
|
|
|
|
|
2020-09-02 18:57:07 +08:00
|
|
|
--control=fifo:ctl-fifo[,ack-fifo]::
|
2020-09-01 17:37:55 +08:00
|
|
|
--control=fd:ctl-fd[,ack-fd]::
|
2020-09-02 18:57:07 +08:00
|
|
|
ctl-fifo / ack-fifo are opened and used as ctl-fd / ack-fd as follows.
|
2020-12-16 16:39:11 +08:00
|
|
|
Listen on ctl-fd descriptor for command to control measurement.
|
|
|
|
|
|
|
|
Available commands:
|
perf tools: Add 'evlist' control command
Add a new 'evlist' control command to display all the evlist events.
When it is received, perf will scan and print current evlist into perf
record terminal.
The interface string for control file is:
evlist [-v|-g|-F]
The syntax follows perf evlist command:
-F Show just the sample frequency used for each event.
-v Show all fields.
-g Show event group information.
Example session:
terminal 1:
# mkfifo control ack
# perf record --control=fifo:control,ack -e '{cycles,instructions}'
terminal 2:
# echo evlist > control
terminal 1:
cycles
instructions
dummy:HG
terminal 2:
# echo 'evlist -v' > control
terminal 1:
cycles: size: 120, { sample_period, sample_freq }: 4000, sample_type: \
IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, disabled: 1, inherit: 1, freq: 1, \
sample_id_all: 1, exclude_guest: 1
instructions: size: 120, config: 0x1, { sample_period, sample_freq }: 4000, \
sample_type: IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, inherit: 1, freq: 1, \
sample_id_all: 1, exclude_guest: 1
dummy:HG: type: 1, size: 120, config: 0x9, { sample_period, sample_freq }: 4000, \
sample_type: IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, inherit: 1, mmap: 1, \
comm: 1, freq: 1, task: 1, sample_id_all: 1, mmap2: 1, comm_exec: 1, ksymbol: 1, \
bpf_event: 1
terminal 2:
# echo 'evlist -g' > control
terminal 1:
{cycles,instructions}
dummy:HG
terminal 2:
# echo 'evlist -F' > control
terminal 1:
cycles: sample_freq=4000
instructions: sample_freq=4000
dummy:HG: sample_freq=4000
This new evlist command is handy to get real event names when
wildcards are used.
Adding evsel_fprintf.c object to python/perf.so build, because
it's now evlist.c dependency.
Adding PYTHON_PERF define for python/perf.so compilation, so we
can use it to compile in only evsel__fprintf from evsel_fprintf.c
object.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Budankov <abudankov@huawei.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20201226232038.390883-3-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-12-27 07:20:36 +08:00
|
|
|
'enable' : enable events
|
|
|
|
'disable' : disable events
|
|
|
|
'enable name' : enable event 'name'
|
|
|
|
'disable name' : disable event 'name'
|
|
|
|
'snapshot' : AUX area tracing snapshot).
|
2020-12-27 07:20:37 +08:00
|
|
|
'stop' : stop perf record
|
2020-12-27 07:20:38 +08:00
|
|
|
'ping' : ping
|
perf tools: Add 'evlist' control command
Add a new 'evlist' control command to display all the evlist events.
When it is received, perf will scan and print current evlist into perf
record terminal.
The interface string for control file is:
evlist [-v|-g|-F]
The syntax follows perf evlist command:
-F Show just the sample frequency used for each event.
-v Show all fields.
-g Show event group information.
Example session:
terminal 1:
# mkfifo control ack
# perf record --control=fifo:control,ack -e '{cycles,instructions}'
terminal 2:
# echo evlist > control
terminal 1:
cycles
instructions
dummy:HG
terminal 2:
# echo 'evlist -v' > control
terminal 1:
cycles: size: 120, { sample_period, sample_freq }: 4000, sample_type: \
IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, disabled: 1, inherit: 1, freq: 1, \
sample_id_all: 1, exclude_guest: 1
instructions: size: 120, config: 0x1, { sample_period, sample_freq }: 4000, \
sample_type: IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, inherit: 1, freq: 1, \
sample_id_all: 1, exclude_guest: 1
dummy:HG: type: 1, size: 120, config: 0x9, { sample_period, sample_freq }: 4000, \
sample_type: IP|TID|TIME|ID|CPU|PERIOD, read_format: ID, inherit: 1, mmap: 1, \
comm: 1, freq: 1, task: 1, sample_id_all: 1, mmap2: 1, comm_exec: 1, ksymbol: 1, \
bpf_event: 1
terminal 2:
# echo 'evlist -g' > control
terminal 1:
{cycles,instructions}
dummy:HG
terminal 2:
# echo 'evlist -F' > control
terminal 1:
cycles: sample_freq=4000
instructions: sample_freq=4000
dummy:HG: sample_freq=4000
This new evlist command is handy to get real event names when
wildcards are used.
Adding evsel_fprintf.c object to python/perf.so build, because
it's now evlist.c dependency.
Adding PYTHON_PERF define for python/perf.so compilation, so we
can use it to compile in only evsel__fprintf from evsel_fprintf.c
object.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Budankov <abudankov@huawei.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20201226232038.390883-3-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-12-27 07:20:36 +08:00
|
|
|
|
|
|
|
'evlist [-v|-g|-F] : display all events
|
|
|
|
-F Show just the sample frequency used for each event.
|
|
|
|
-v Show all fields.
|
|
|
|
-g Show event group information.
|
2020-12-16 16:39:11 +08:00
|
|
|
|
|
|
|
Measurements can be started with events disabled using --delay=-1 option. Optionally
|
|
|
|
send control command completion ('ack\n') to ack-fd descriptor to synchronize with the
|
|
|
|
controlling process. Example of bash shell script to enable and disable events during
|
|
|
|
measurements:
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
#!/bin/bash
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
ctl_dir=/tmp/
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
ctl_fifo=${ctl_dir}perf_ctl.fifo
|
|
|
|
test -p ${ctl_fifo} && unlink ${ctl_fifo}
|
|
|
|
mkfifo ${ctl_fifo}
|
|
|
|
exec {ctl_fd}<>${ctl_fifo}
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
ctl_ack_fifo=${ctl_dir}perf_ctl_ack.fifo
|
|
|
|
test -p ${ctl_ack_fifo} && unlink ${ctl_ack_fifo}
|
|
|
|
mkfifo ${ctl_ack_fifo}
|
|
|
|
exec {ctl_fd_ack}<>${ctl_ack_fifo}
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
perf record -D -1 -e cpu-cycles -a \
|
|
|
|
--control fd:${ctl_fd},${ctl_fd_ack} \
|
|
|
|
-- sleep 30 &
|
|
|
|
perf_pid=$!
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
sleep 5 && echo 'enable' >&${ctl_fd} && read -u ${ctl_fd_ack} e1 && echo "enabled(${e1})"
|
|
|
|
sleep 10 && echo 'disable' >&${ctl_fd} && read -u ${ctl_fd_ack} d1 && echo "disabled(${d1})"
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
exec {ctl_fd_ack}>&-
|
|
|
|
unlink ${ctl_ack_fifo}
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
exec {ctl_fd}>&-
|
|
|
|
unlink ${ctl_fifo}
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2020-09-01 17:37:55 +08:00
|
|
|
wait -n ${perf_pid}
|
|
|
|
exit $?
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2022-01-18 02:34:33 +08:00
|
|
|
--threads=<spec>::
|
2022-01-18 02:34:32 +08:00
|
|
|
Write collected trace data into several data files using parallel threads.
|
2022-01-18 02:34:33 +08:00
|
|
|
<spec> value can be user defined list of masks. Masks separated by colon
|
|
|
|
define CPUs to be monitored by a thread and affinity mask of that thread
|
|
|
|
is separated by slash:
|
|
|
|
|
|
|
|
<cpus mask 1>/<affinity mask 1>:<cpus mask 2>/<affinity mask 2>:...
|
|
|
|
|
|
|
|
CPUs or affinity masks must not overlap with other corresponding masks.
|
|
|
|
Invalid CPUs are ignored, but masks containing only invalid CPUs are not
|
|
|
|
allowed.
|
|
|
|
|
|
|
|
For example user specification like the following:
|
|
|
|
|
|
|
|
0,2-4/2-4:1,5-7/5-7
|
|
|
|
|
|
|
|
specifies parallel threads layout that consists of two threads,
|
|
|
|
the first thread monitors CPUs 0 and 2-4 with the affinity mask 2-4,
|
|
|
|
the second monitors CPUs 1 and 5-7 with the affinity mask 5-7.
|
|
|
|
|
|
|
|
<spec> value can also be a string meaning predefined parallel threads
|
|
|
|
layout:
|
|
|
|
|
|
|
|
cpu - create new data streaming thread for every monitored cpu
|
|
|
|
core - create new thread to monitor CPUs grouped by a core
|
|
|
|
package - create new thread to monitor CPUs grouped by a package
|
|
|
|
numa - create new threed to monitor CPUs grouped by a NUMA domain
|
|
|
|
|
|
|
|
Predefined layouts can be used on systems with large number of CPUs in
|
|
|
|
order not to spawn multiple per-cpu streaming threads but still avoid LOST
|
|
|
|
events in data directory files. Option specified with no or empty value
|
|
|
|
defaults to CPU layout. Masks defined or provided by the option value are
|
|
|
|
filtered through the mask provided by -C option.
|
2022-01-18 02:34:32 +08:00
|
|
|
|
2021-04-27 15:01:39 +08:00
|
|
|
include::intel-hybrid.txt[]
|
2020-07-17 15:08:23 +08:00
|
|
|
|
2021-12-10 04:04:25 +08:00
|
|
|
--debuginfod[=URLs]::
|
|
|
|
Specify debuginfod URL to be used when cacheing perf.data binaries,
|
|
|
|
it follows the same syntax as the DEBUGINFOD_URLS variable, like:
|
|
|
|
|
|
|
|
http://192.168.122.174:8002
|
|
|
|
|
|
|
|
If the URLs is not specified, the value of DEBUGINFOD_URLS
|
|
|
|
system environment variable is used.
|
|
|
|
|
2022-05-19 06:47:21 +08:00
|
|
|
--off-cpu::
|
|
|
|
Enable off-cpu profiling with BPF. The BPF program will collect
|
|
|
|
task scheduling information with (user) stacktrace and save them
|
|
|
|
as sample data of a software event named "offcpu-time". The
|
|
|
|
sample period will have the time the task slept in nanoseconds.
|
|
|
|
|
|
|
|
Note that BPF can collect stack traces using frame pointer ("fp")
|
|
|
|
only, as of now. So the applications built without the frame
|
|
|
|
pointer might see bogus addresses.
|
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2020-03-11 20:20:33 +08:00
|
|
|
linkperf:perf-stat[1], linkperf:perf-list[1], linkperf:perf-intel-pt[1]
|