perf tools: Per-event time support
[deliverable/linux.git] / tools / perf / Documentation / perf-record.txt
CommitLineData
e33e0a43 1perf-record(1)
c1c2365a 2==============
e33e0a43
IM
3
4NAME
5----
23ac9cbe 6perf-record - Run a command and record its profile into perf.data
e33e0a43
IM
7
8SYNOPSIS
9--------
10[verse]
11'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] <command>
9e096753 12'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>]
e33e0a43
IM
13
14DESCRIPTION
15-----------
16This command runs a command and gathers a performance counter profile
23ac9cbe 17from it, into perf.data - without displaying anything.
e33e0a43
IM
18
19This file can then be inspected later on, using 'perf report'.
20
21
22OPTIONS
23-------
24<command>...::
25 Any command you can specify in a shell.
26
27-e::
28--event=::
1b290d67 29 Select the PMU event. Selection can be:
e33e0a43 30
1b290d67
FW
31 - a symbolic event name (use 'perf list' to list all events)
32
33 - a raw PMU event (eventsel+umask) in the form of rNNN where NNN is a
34 hexadecimal event descriptor.
35
f9ab9c19
CS
36 - a symbolically formed PMU event like 'pmu/param1=0x3,param2/' where
37 'param1', 'param2', etc are defined as formats for the PMU in
38 /sys/bus/event_sources/devices/<pmu>/format/*.
39
40 - a symbolically formed event like 'pmu/config=M,config1=N,config3=K/'
41
42 where M, N, K are numbers (in decimal, hex, octal format). Acceptable
43 values for each of 'config', 'config1' and 'config2' are defined by
44 corresponding entries in /sys/bus/event_sources/devices/<pmu>/format/*
45 param1 and param2 are defined as formats for the PMU in:
46 /sys/bus/event_sources/devices/<pmu>/format/*
47
3d5d68aa 48 There are also some params which are not defined in .../<pmu>/format/*.
ee4c7588 49 These params can be used to overload default config values per event.
3d5d68aa
KL
50 Here is a list of the params.
51 - 'period': Set event sampling period
32067712
KL
52 - 'time': Disable/enable time stamping. Acceptable values are 1 for
53 enabling time stamping. 0 for disabling time stamping.
54 The default is 1.
3d5d68aa
KL
55 Note: If user explicitly sets options which conflict with the params,
56 the value set by the params will be overridden.
57
3741eb9f 58 - a hardware breakpoint event in the form of '\mem:addr[/len][:access]'
1b290d67
FW
59 where addr is the address in memory you want to break in.
60 Access is the memory access type (read, write, execute) it can
3741eb9f
JS
61 be passed as follows: '\mem:addr[:[r][w][x]]'. len is the range,
62 number of bytes from specified addr, which the breakpoint will cover.
1b290d67
FW
63 If you want to profile read-write accesses in 0x1000, just set
64 'mem:0x1000:rw'.
3741eb9f
JS
65 If you want to profile write accesses in [0x1000~1008), just set
66 'mem:0x1000/8:w'.
08dbd7e3 67
9a75606c
NK
68 - a group of events surrounded by a pair of brace ("{event1,event2,...}").
69 Each event is separated by commas and the group should be quoted to
70 prevent the shell interpretation. You also need to use --group on
71 "perf report" to view group events together.
72
08dbd7e3 73--filter=<filter>::
4ba1faa1
WN
74 Event filter. This option should follow a event selector (-e) which
75 selects tracepoint event(s). Multiple '--filter' options are combined
76 using '&&'.
77
78--exclude-perf::
79 Don't record events issued by perf itself. This option should follow
80 a event selector (-e) which selects tracepoint event(s). It adds a
81 filter expression 'common_pid != $PERFPID' to filters. If other
82 '--filter' exists, the new filter expression will be combined with
83 them by '&&'.
08dbd7e3 84
e33e0a43 85-a::
08dbd7e3
SB
86--all-cpus::
87 System-wide collection from all CPUs.
e33e0a43 88
386c0b70
ACM
89-p::
90--pid=::
b52956c9 91 Record events on existing process ID (comma separated list).
08dbd7e3
SB
92
93-t::
94--tid=::
b52956c9 95 Record events on existing thread ID (comma separated list).
69e7e5b0
AH
96 This option also disables inheritance by default. Enable it by adding
97 --inherit.
386c0b70 98
0d37aa34
ACM
99-u::
100--uid=::
101 Record events in threads owned by uid. Name or number.
102
386c0b70
ACM
103-r::
104--realtime=::
105 Collect data with this RT SCHED_FIFO priority.
563aecb2 106
509051ea 107--no-buffering::
acac03fa 108 Collect data without buffering.
386c0b70 109
386c0b70
ACM
110-c::
111--count=::
112 Event period to sample.
113
114-o::
115--output=::
116 Output file name.
117
118-i::
2e6cdf99
SE
119--no-inherit::
120 Child tasks do not inherit counters.
386c0b70
ACM
121-F::
122--freq=::
123 Profile at this frequency.
124
125-m::
126--mmap-pages=::
27050f53
JO
127 Number of mmap data pages (must be a power of two) or size
128 specification with appended unit character - B/K/M/G. The
129 size is rounded up to have nearest pages power of two value.
e9db1310
AH
130 Also, by adding a comma, the number of mmap pages for AUX
131 area tracing can be specified.
386c0b70 132
9a75606c
NK
133--group::
134 Put all events in a single event group. This precedes the --event
135 option and remains only for backward compatibility. See --event.
136
386c0b70 137-g::
09b0fd45
JO
138 Enables call-graph (stack chain/backtrace) recording.
139
386c0b70 140--call-graph::
09b0fd45
JO
141 Setup and enable call-graph (stack chain/backtrace) recording,
142 implies -g.
143
144 Allows specifying "fp" (frame pointer) or "dwarf"
aad2b21c
KL
145 (DWARF's CFI - Call Frame Information) or "lbr"
146 (Hardware Last Branch Record facility) as the method to collect
09b0fd45
JO
147 the information used to show the call graphs.
148
149 In some systems, where binaries are build with gcc
150 --fomit-frame-pointer, using the "fp" method will produce bogus
151 call graphs, using "dwarf", if available (perf tools linked to
152 the libunwind library) should be used instead.
aad2b21c
KL
153 Using the "lbr" method doesn't require any compiler options. It
154 will produce call graphs from the hardware LBR registers. The
155 main limition is that it is only available on new Intel
156 platforms, such as Haswell. It can only get user call chain. It
157 doesn't work with branch stack sampling at the same time.
386c0b70 158
b44308f5
ACM
159-q::
160--quiet::
161 Don't print any message, useful for scripting.
162
386c0b70
ACM
163-v::
164--verbose::
165 Be more verbose (show counter open errors, etc).
166
167-s::
168--stat::
1f91d5fd
NK
169 Record per-thread event counts. Use it with 'perf report -T' to see
170 the values.
386c0b70
ACM
171
172-d::
173--data::
56100321 174 Record the sample addresses.
386c0b70 175
9c90a61c
ACM
176-T::
177--timestamp::
56100321
PZ
178 Record the sample timestamps. Use it with 'perf report -D' to see the
179 timestamps, for instance.
180
181-P::
182--period::
183 Record the sample period.
9c90a61c 184
386c0b70
ACM
185-n::
186--no-samples::
187 Don't sample.
e33e0a43 188
ec7ba4ea
FW
189-R::
190--raw-samples::
bdef3b02 191Collect raw sample records from all opened counters (default for tracepoint counters).
ec7ba4ea 192
c45c6ea2
SE
193-C::
194--cpu::
08dbd7e3
SB
195Collect samples only on the list of CPUs provided. Multiple CPUs can be provided as a
196comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2.
c45c6ea2
SE
197In per-thread mode with inheritance mode on (default), samples are captured only when
198the thread executes on the designated CPUs. Default is to monitor all CPUs.
199
a1ac1d3c
SE
200-N::
201--no-buildid-cache::
96355f2c 202Do not update the buildid cache. This saves some overhead in situations
a1ac1d3c
SE
203where the information in the perf.data file (which includes buildids)
204is sufficient.
205
023695d9
SE
206-G name,...::
207--cgroup name,...::
208monitor only in the container (cgroup) called "name". This option is available only
209in per-cpu mode. The cgroup filesystem must be mounted. All threads belonging to
210container "name" are monitored when they run on the monitored CPUs. Multiple cgroups
211can be provided. Each cgroup is applied to the corresponding event, i.e., first cgroup
212to first event, second cgroup to second event and so on. It is possible to provide
213an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
214corresponding events, i.e., they always refer to events defined earlier on the command
215line.
216
bdfebd84 217-b::
a5aabdac
SE
218--branch-any::
219Enable taken branch stack sampling. Any type of taken branch may be sampled.
220This is a shortcut for --branch-filter any. See --branch-filter for more infos.
221
222-j::
223--branch-filter::
bdfebd84
RAV
224Enable taken branch stack sampling. Each sample captures a series of consecutive
225taken branches. The number of branches captured with each sample depends on the
226underlying hardware, the type of branches of interest, and the executed code.
227It is possible to select the types of branches captured by enabling filters. The
228following filters are defined:
229
a5aabdac 230 - any: any type of branches
bdfebd84
RAV
231 - any_call: any function call or system call
232 - any_ret: any function return or system call return
2e49a948 233 - ind_call: any indirect branch
bdfebd84
RAV
234 - u: only when the branch target is at the user level
235 - k: only when the branch target is in the kernel
236 - hv: only when the target is at the hypervisor level
0126d493
AK
237 - in_tx: only when the target is in a hardware transaction
238 - no_tx: only when the target is not in a hardware transaction
239 - abort_tx: only when the target is a hardware transaction abort
3e39db4a 240 - cond: conditional branches
bdfebd84
RAV
241
242+
3e39db4a 243The option requires at least one branch type among any, any_call, any_ret, ind_call, cond.
9c768207 244The privilege levels may be omitted, in which case, the privilege levels of the associated
a5aabdac
SE
245event are applied to the branch filter. Both kernel (k) and hypervisor (hv) privilege
246levels are subject to permissions. When sampling on multiple events, branch stack sampling
247is enabled for all the sampling events. The sampled branch type is the same for all events.
248The various filters must be specified as a comma separated list: --branch-filter any_ret,u,k
249Note that this feature may not be available on all processors.
bdfebd84 250
05484298
AK
251--weight::
252Enable weightened sampling. An additional weight is recorded per sample and can be
253displayed with the weight and local_weight sort keys. This currently works for TSX
254abort events and some memory events in precise mode on modern Intel CPUs.
255
475eeab9
AK
256--transaction::
257Record transaction flags for transaction related events.
258
3aa5939d
AH
259--per-thread::
260Use per-thread mmaps. By default per-cpu mmaps are created. This option
261overrides that and uses per-thread mmaps. A side-effect of that is that
262inheritance is automatically disabled. --per-thread is ignored with a warning
263if combined with -a or -C options.
539e6bb7 264
a6205a35
ACM
265-D::
266--delay=::
6619a53e
AK
267After starting the program, wait msecs before measuring. This is useful to
268filter out the startup phase of the program, which is often very different.
269
4b6c5177
SE
270-I::
271--intr-regs::
272Capture machine state (registers) at interrupt, i.e., on counter overflows for
273each sample. List of captured registers depends on the architecture. This option
274is off by default.
275
85c273d2
AK
276--running-time::
277Record running and enabled time for read events (:S)
278
814c8c38
PZ
279-k::
280--clockid::
281Sets the clock id to use for the various time fields in the perf_event_type
282records. See clock_gettime(). In particular CLOCK_MONOTONIC and
283CLOCK_MONOTONIC_RAW are supported, some events might also allow
284CLOCK_BOOTTIME, CLOCK_REALTIME and CLOCK_TAI.
285
2dd6d8a1
AH
286-S::
287--snapshot::
288Select AUX area tracing Snapshot Mode. This option is valid only with an
289AUX area tracing event. Optionally the number of bytes to capture per
290snapshot can be specified. In Snapshot Mode, trace data is captured only when
291signal SIGUSR2 is received.
292
9d9cad76
KL
293--proc-map-timeout::
294When processing pre-existing threads /proc/XXX/mmap, it may take a long time,
295because the file may be huge. A time out is needed in such cases.
296This option sets the time out limit. The default value is 500 ms.
297
b757bb09
AH
298--switch-events::
299Record context switch events i.e. events of type PERF_RECORD_SWITCH or
300PERF_RECORD_SWITCH_CPU_WIDE.
301
e33e0a43
IM
302SEE ALSO
303--------
386b05e3 304linkperf:perf-stat[1], linkperf:perf-list[1]
This page took 0.382376 seconds and 5 git commands to generate.