perf-script.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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, brstack, brstacksym, flags, bpf-output, brstackinsn, brstackoff,
  98. callindent, insn, insnlen, synth, phys_addr.
  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. -k::
  170. --vmlinux=<file>::
  171. vmlinux pathname
  172. --kallsyms=<file>::
  173. kallsyms pathname
  174. --symfs=<directory>::
  175. Look for files with symbols relative to this directory.
  176. -G::
  177. --hide-call-graph::
  178. When printing symbols do not display call chain.
  179. --stop-bt::
  180. Stop display of callgraph at these symbols
  181. -C::
  182. --cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
  183. be provided as a comma-separated list with no space: 0,1. Ranges of
  184. CPUs are specified with -: 0-2. Default is to report samples on all
  185. CPUs.
  186. -c::
  187. --comms=::
  188. Only display events for these comms. CSV that understands
  189. file://filename entries.
  190. --pid=::
  191. Only show events for given process ID (comma separated list).
  192. --tid=::
  193. Only show events for given thread ID (comma separated list).
  194. -I::
  195. --show-info::
  196. Display extended information about the perf.data file. This adds
  197. information which may be very large and thus may clutter the display.
  198. It currently includes: cpu and numa topology of the host system.
  199. It can only be used with the perf script report mode.
  200. --show-kernel-path::
  201. Try to resolve the path of [kernel.kallsyms]
  202. --show-task-events
  203. Display task related events (e.g. FORK, COMM, EXIT).
  204. --show-mmap-events
  205. Display mmap related events (e.g. MMAP, MMAP2).
  206. --show-namespace-events
  207. Display namespace events i.e. events of type PERF_RECORD_NAMESPACES.
  208. --show-switch-events
  209. Display context switch events i.e. events of type PERF_RECORD_SWITCH or
  210. PERF_RECORD_SWITCH_CPU_WIDE.
  211. --demangle::
  212. Demangle symbol names to human readable form. It's enabled by default,
  213. disable with --no-demangle.
  214. --demangle-kernel::
  215. Demangle kernel symbol names to human readable form (for C++ kernels).
  216. --header
  217. Show perf.data header.
  218. --header-only
  219. Show only perf.data header.
  220. --itrace::
  221. Options for decoding instruction tracing data. The options are:
  222. include::itrace.txt[]
  223. To disable decoding entirely, use --no-itrace.
  224. --full-source-path::
  225. Show the full path for source files for srcline output.
  226. --max-stack::
  227. Set the stack depth limit when parsing the callchain, anything
  228. beyond the specified depth will be ignored. This is a trade-off
  229. between information loss and faster processing especially for
  230. workloads that can have a very long callchain stack.
  231. Note that when using the --itrace option the synthesized callchain size
  232. will override this value if the synthesized callchain size is bigger.
  233. Default: 127
  234. --ns::
  235. Use 9 decimal places when displaying time (i.e. show the nanoseconds)
  236. -f::
  237. --force::
  238. Don't do ownership validation.
  239. --time::
  240. Only analyze samples within given time window: <start>,<stop>. Times
  241. have the format seconds.microseconds. If start is not given (i.e., time
  242. string is ',x.y') then analysis starts at the beginning of the file. If
  243. stop time is not given (i.e, time string is 'x.y,') then analysis goes
  244. to end of file.
  245. --max-blocks::
  246. Set the maximum number of program blocks to print with brstackasm for
  247. each sample.
  248. --inline::
  249. If a callgraph address belongs to an inlined function, the inline stack
  250. will be printed. Each entry has function name and file/line.
  251. SEE ALSO
  252. --------
  253. linkperf:perf-record[1], linkperf:perf-script-perl[1],
  254. linkperf:perf-script-python[1]