perf-script.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. perf-script(1)
  2. =============
  3. NAME
  4. ----
  5. perf-script - Read perf.data (created by perf record) and display trace output
  6. SYNOPSIS
  7. --------
  8. [verse]
  9. 'perf script' [<options>]
  10. 'perf script' [<options>] record <script> [<record-options>] <command>
  11. 'perf script' [<options>] report <script> [script-args]
  12. 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
  13. 'perf script' [<options>] <top-script> [script-args]
  14. DESCRIPTION
  15. -----------
  16. This command reads the input file and displays the trace recorded.
  17. There are several variants of perf script:
  18. 'perf script' to see a detailed trace of the workload that was
  19. recorded.
  20. You can also run a set of pre-canned scripts that aggregate and
  21. summarize the raw trace data in various ways (the list of scripts is
  22. available via 'perf script -l'). The following variants allow you to
  23. record and run those scripts:
  24. 'perf script record <script> <command>' to record the events required
  25. for 'perf script report'. <script> is the name displayed in the
  26. output of 'perf script --list' i.e. the actual script name minus any
  27. language extension. If <command> is not specified, the events are
  28. recorded using the -a (system-wide) 'perf record' option.
  29. 'perf script report <script> [args]' to run and display the results
  30. of <script>. <script> is the name displayed in the output of 'perf
  31. script --list' i.e. the actual script name minus any language
  32. extension. The perf.data output from a previous run of 'perf script
  33. record <script>' is used and should be present for this command to
  34. succeed. [args] refers to the (mainly optional) args expected by
  35. the script.
  36. 'perf script <script> <required-script-args> <command>' to both
  37. record the events required for <script> and to run the <script>
  38. using 'live-mode' i.e. without writing anything to disk. <script>
  39. is the name displayed in the output of 'perf script --list' i.e. the
  40. actual script name minus any language extension. If <command> is
  41. not specified, the events are recorded using the -a (system-wide)
  42. 'perf record' option. If <script> has any required args, they
  43. should be specified before <command>. This mode doesn't allow for
  44. optional script args to be specified; if optional script args are
  45. desired, they can be specified using separate 'perf script record'
  46. and 'perf script report' commands, with the stdout of the record step
  47. piped to the stdin of the report script, using the '-o -' and '-i -'
  48. options of the corresponding commands.
  49. 'perf script <top-script>' to both record the events required for
  50. <top-script> and to run the <top-script> using 'live-mode'
  51. i.e. without writing anything to disk. <top-script> is the name
  52. displayed in the output of 'perf script --list' i.e. the actual
  53. script name minus any language extension; a <top-script> is defined
  54. as any script name ending with the string 'top'.
  55. [<record-options>] can be passed to the record steps of 'perf script
  56. record' and 'live-mode' variants; this isn't possible however for
  57. <top-script> 'live-mode' or 'perf script report' variants.
  58. See the 'SEE ALSO' section for links to language-specific
  59. information on how to write and run your own trace scripts.
  60. OPTIONS
  61. -------
  62. <command>...::
  63. Any command you can specify in a shell.
  64. -D::
  65. --dump-raw-trace=::
  66. Display verbose dump of the trace data.
  67. -L::
  68. --Latency=::
  69. Show latency attributes (irqs/preemption disabled, etc).
  70. -l::
  71. --list=::
  72. Display a list of available trace scripts.
  73. -s ['lang']::
  74. --script=::
  75. Process trace data with the given script ([lang]:script[.ext]).
  76. If the string 'lang' is specified in place of a script name, a
  77. list of supported languages will be displayed instead.
  78. -g::
  79. --gen-script=::
  80. Generate perf-script.[ext] starter script for given language,
  81. using current perf.data.
  82. -a::
  83. Force system-wide collection. Scripts run without a <command>
  84. normally use -a by default, while scripts run with a <command>
  85. normally don't - this option allows the latter to be run in
  86. system-wide mode.
  87. -i::
  88. --input=::
  89. Input file name. (default: perf.data unless stdin is a fifo)
  90. -d::
  91. --debug-mode::
  92. Do various checks like samples ordering and lost events.
  93. -F::
  94. --fields::
  95. Comma separated list of fields to print. Options are:
  96. comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr, symoff,
  97. srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output, brstackinsn,
  98. brstackoff, callindent, insn, insnlen, synth, phys_addr, metric, misc.
  99. Field list can be prepended with the type, trace, sw or hw,
  100. to indicate to which event type the field list applies.
  101. e.g., -F sw:comm,tid,time,ip,sym and -F trace:time,cpu,trace
  102. perf script -F <fields>
  103. is equivalent to:
  104. perf script -F trace:<fields> -F sw:<fields> -F hw:<fields>
  105. i.e., the specified fields apply to all event types if the type string
  106. is not given.
  107. In addition to overriding fields, it is also possible to add or remove
  108. fields from the defaults. For example
  109. -F -cpu,+insn
  110. removes the cpu field and adds the insn field. Adding/removing fields
  111. cannot be mixed with normal overriding.
  112. The arguments are processed in the order received. A later usage can
  113. reset a prior request. e.g.:
  114. -F trace: -F comm,tid,time,ip,sym
  115. The first -F suppresses trace events (field list is ""), but then the
  116. second invocation sets the fields to comm,tid,time,ip,sym. In this case a
  117. warning is given to the user:
  118. "Overriding previous field request for all events."
  119. Alternatively, consider the order:
  120. -F comm,tid,time,ip,sym -F trace:
  121. The first -F sets the fields for all events and the second -F
  122. suppresses trace events. The user is given a warning message about
  123. the override, and the result of the above is that only S/W and H/W
  124. events are displayed with the given fields.
  125. For the 'wildcard' option if a user selected field is invalid for an
  126. event type, a message is displayed to the user that the option is
  127. ignored for that type. For example:
  128. $ perf script -F comm,tid,trace
  129. 'trace' not valid for hardware events. Ignoring.
  130. 'trace' not valid for software events. Ignoring.
  131. Alternatively, if the type is given an invalid field is specified it
  132. is an error. For example:
  133. perf script -v -F sw:comm,tid,trace
  134. 'trace' not valid for software events.
  135. At this point usage is displayed, and perf-script exits.
  136. The flags field is synthesized and may have a value when Instruction
  137. Trace decoding. The flags are "bcrosyiABEx" which stand for branch,
  138. call, return, conditional, system, asynchronous, interrupt,
  139. transaction abort, trace begin, trace end, and in transaction,
  140. respectively. Known combinations of flags are printed more nicely e.g.
  141. "call" for "bc", "return" for "br", "jcc" for "bo", "jmp" for "b",
  142. "int" for "bci", "iret" for "bri", "syscall" for "bcs", "sysret" for "brs",
  143. "async" for "by", "hw int" for "bcyi", "tx abrt" for "bA", "tr strt" for "bB",
  144. "tr end" for "bE". However the "x" flag will be display separately in those
  145. cases e.g. "jcc (x)" for a condition branch within a transaction.
  146. The callindent field is synthesized and may have a value when
  147. Instruction Trace decoding. For calls and returns, it will display the
  148. name of the symbol indented with spaces to reflect the stack depth.
  149. When doing instruction trace decoding insn and insnlen give the
  150. instruction bytes and the instruction length of the current
  151. instruction.
  152. The synth field is used by synthesized events which may be created when
  153. Instruction Trace decoding.
  154. Finally, a user may not set fields to none for all event types.
  155. i.e., -F "" is not allowed.
  156. The brstack output includes branch related information with raw addresses using the
  157. /v/v/v/v/cycles syntax in the following order:
  158. FROM: branch source instruction
  159. TO : branch target instruction
  160. M/P/-: M=branch target mispredicted or branch direction was mispredicted, P=target predicted or direction predicted, -=not supported
  161. X/- : X=branch inside a transactional region, -=not in transaction region or not supported
  162. A/- : A=TSX abort entry, -=not aborted region or not supported
  163. cycles
  164. The brstacksym is identical to brstack, except that the FROM and TO addresses are printed in a symbolic form if possible.
  165. When brstackinsn is specified the full assembler sequences of branch sequences for each sample
  166. is printed. This is the full execution path leading to the sample. This is only supported when the
  167. sample was recorded with perf record -b or -j any.
  168. The brstackoff field will print an offset into a specific dso/binary.
  169. With the metric option perf script can compute metrics for
  170. sampling periods, similar to perf stat. This requires
  171. specifying a group with multiple metrics with the :S option
  172. for perf record. perf will sample on the first event, and
  173. compute metrics for all the events in the group. Please note
  174. that the metric computed is averaged over the whole sampling
  175. period, not just for the sample point.
  176. For sample events it's possible to display misc field with -F +misc option,
  177. following letters are displayed for each bit:
  178. PERF_RECORD_MISC_KERNEL K
  179. PERF_RECORD_MISC_USER U
  180. PERF_RECORD_MISC_HYPERVISOR H
  181. PERF_RECORD_MISC_GUEST_KERNEL G
  182. PERF_RECORD_MISC_GUEST_USER g
  183. PERF_RECORD_MISC_MMAP_DATA* M
  184. PERF_RECORD_MISC_COMM_EXEC E
  185. PERF_RECORD_MISC_SWITCH_OUT S
  186. PERF_RECORD_MISC_SWITCH_OUT_PREEMPT Sp
  187. $ perf script -F +misc ...
  188. sched-messaging 1414 K 28690.636582: 4590 cycles ...
  189. sched-messaging 1407 U 28690.636600: 325620 cycles ...
  190. sched-messaging 1414 K 28690.636608: 19473 cycles ...
  191. misc field ___________/
  192. -k::
  193. --vmlinux=<file>::
  194. vmlinux pathname
  195. --kallsyms=<file>::
  196. kallsyms pathname
  197. --symfs=<directory>::
  198. Look for files with symbols relative to this directory.
  199. -G::
  200. --hide-call-graph::
  201. When printing symbols do not display call chain.
  202. --stop-bt::
  203. Stop display of callgraph at these symbols
  204. -C::
  205. --cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
  206. be provided as a comma-separated list with no space: 0,1. Ranges of
  207. CPUs are specified with -: 0-2. Default is to report samples on all
  208. CPUs.
  209. -c::
  210. --comms=::
  211. Only display events for these comms. CSV that understands
  212. file://filename entries.
  213. --pid=::
  214. Only show events for given process ID (comma separated list).
  215. --tid=::
  216. Only show events for given thread ID (comma separated list).
  217. -I::
  218. --show-info::
  219. Display extended information about the perf.data file. This adds
  220. information which may be very large and thus may clutter the display.
  221. It currently includes: cpu and numa topology of the host system.
  222. It can only be used with the perf script report mode.
  223. --show-kernel-path::
  224. Try to resolve the path of [kernel.kallsyms]
  225. --show-task-events
  226. Display task related events (e.g. FORK, COMM, EXIT).
  227. --show-mmap-events
  228. Display mmap related events (e.g. MMAP, MMAP2).
  229. --show-namespace-events
  230. Display namespace events i.e. events of type PERF_RECORD_NAMESPACES.
  231. --show-switch-events
  232. Display context switch events i.e. events of type PERF_RECORD_SWITCH or
  233. PERF_RECORD_SWITCH_CPU_WIDE.
  234. --show-lost-events
  235. Display lost events i.e. events of type PERF_RECORD_LOST.
  236. --show-round-events
  237. Display finished round events i.e. events of type PERF_RECORD_FINISHED_ROUND.
  238. --demangle::
  239. Demangle symbol names to human readable form. It's enabled by default,
  240. disable with --no-demangle.
  241. --demangle-kernel::
  242. Demangle kernel symbol names to human readable form (for C++ kernels).
  243. --header
  244. Show perf.data header.
  245. --header-only
  246. Show only perf.data header.
  247. --itrace::
  248. Options for decoding instruction tracing data. The options are:
  249. include::itrace.txt[]
  250. To disable decoding entirely, use --no-itrace.
  251. --full-source-path::
  252. Show the full path for source files for srcline output.
  253. --max-stack::
  254. Set the stack depth limit when parsing the callchain, anything
  255. beyond the specified depth will be ignored. This is a trade-off
  256. between information loss and faster processing especially for
  257. workloads that can have a very long callchain stack.
  258. Note that when using the --itrace option the synthesized callchain size
  259. will override this value if the synthesized callchain size is bigger.
  260. Default: 127
  261. --ns::
  262. Use 9 decimal places when displaying time (i.e. show the nanoseconds)
  263. -f::
  264. --force::
  265. Don't do ownership validation.
  266. --time::
  267. Only analyze samples within given time window: <start>,<stop>. Times
  268. have the format seconds.microseconds. If start is not given (i.e., time
  269. string is ',x.y') then analysis starts at the beginning of the file. If
  270. stop time is not given (i.e, time string is 'x.y,') then analysis goes
  271. to end of file.
  272. Also support time percent with multipe time range. Time string is
  273. 'a%/n,b%/m,...' or 'a%-b%,c%-%d,...'.
  274. For example:
  275. Select the second 10% time slice:
  276. perf script --time 10%/2
  277. Select from 0% to 10% time slice:
  278. perf script --time 0%-10%
  279. Select the first and second 10% time slices:
  280. perf script --time 10%/1,10%/2
  281. Select from 0% to 10% and 30% to 40% slices:
  282. perf script --time 0%-10%,30%-40%
  283. --max-blocks::
  284. Set the maximum number of program blocks to print with brstackasm for
  285. each sample.
  286. --per-event-dump::
  287. Create per event files with a "perf.data.EVENT.dump" name instead of
  288. printing to stdout, useful, for instance, for generating flamegraphs.
  289. --inline::
  290. If a callgraph address belongs to an inlined function, the inline stack
  291. will be printed. Each entry has function name and file/line. Enabled by
  292. default, disable with --no-inline.
  293. SEE ALSO
  294. --------
  295. linkperf:perf-record[1], linkperf:perf-script-perl[1],
  296. linkperf:perf-script-python[1]