'\" t .\" Title: perf-script-python .\" Author: [see the "AUTHOR(S)" section] .\" Generator: Asciidoctor 2.0.10 .\" Date: 2020-01-06 .\" Manual: perf Manual .\" Source: perf .\" Language: English .\" .TH "PERF_5.5\-SCRIPT\-PYTHON" "1" "2020-01-06" "perf" "perf Manual" .ie \n(.g .ds Aq \(aq .el .ds Aq ' .ss \n[.ss] 0 .nh .ad l .de URL \fI\\$2\fP <\\$1>\\$3 .. .als MTO URL .if \n[.g] \{\ . mso www.tmac . am URL . ad l . . . am MTO . ad l . . . LINKSTYLE blue R < > .\} .SH "NAME" perf\-script\-python \- Process trace data with a Python script .SH "SYNOPSIS" .sp .sp .nf \fIperf script\fP [\-s [Python]:script[.py] ] .fi .br .SH "DESCRIPTION" .sp This perf script option is used to process perf script data using perf\(cqs built\-in Python interpreter. It reads and processes the input file and displays the results of the trace analysis implemented in the given Python script, if any. .SH "A QUICK EXAMPLE" .sp This section shows the process, start to finish, of creating a working Python script that aggregates and extracts useful information from a raw perf script stream. You can avoid reading the rest of this document if an example is enough for you; the rest of the document provides more details on each step and lists the library functions available to script writers. .sp This example actually details the steps that were used to create the \fIsyscall\-counts\fP script you see when you list the available perf script scripts via \fIperf script \-l\fP. As such, this script also shows how to integrate your script into the list of general\-purpose \fIperf script\fP scripts listed by that command. .sp The syscall\-counts script is a simple script, but demonstrates all the basic ideas necessary to create a useful script. Here\(cqs an example of its output (syscall names are not yet supported, they will appear as numbers): .sp .if n .RS 4 .nf syscall events: event count \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\-\-\-\- sys_write 455067 sys_getdents 4072 sys_close 3037 sys_swapoff 1769 sys_read 923 sys_sched_setparam 826 sys_open 331 sys_newfstat 326 sys_mmap 217 sys_munmap 216 sys_futex 141 sys_select 102 sys_poll 84 sys_setitimer 12 sys_writev 8 15 8 sys_lseek 7 sys_rt_sigprocmask 6 sys_wait4 3 sys_ioctl 3 sys_set_robust_list 1 sys_exit 1 56 1 sys_access 1 .fi .if n .RE .sp Basically our task is to keep a per\-syscall tally that gets updated every time a system call occurs in the system. Our script will do that, but first we need to record the data that will be processed by that script. Theoretically, there are a couple of ways we could do that: .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ . sp -1 . IP \(bu 2.3 .\} we could enable every event under the tracing/events/syscalls directory, but this is over 600 syscalls, well beyond the number allowable by perf. These individual syscall events will however be useful if we want to later use the guidance we get from the general\-purpose scripts to drill down and get more detail about individual syscalls of interest. .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ . sp -1 . IP \(bu 2.3 .\} we can enable the sys_enter and/or sys_exit syscalls found under tracing/events/raw_syscalls. These are called for all syscalls; the \fIid\fP field can be used to distinguish between individual syscall numbers. .RE .sp For this script, we only need to know that a syscall was entered; we don\(cqt care how it exited, so we\(cqll use \fIperf record\fP to record only the sys_enter events: .sp .if n .RS 4 .nf # perf record \-a \-e raw_syscalls:sys_enter ^C[ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 56.545 MB perf.data (~2470503 samples) ] .fi .if n .RE .sp The options basically say to collect data for every syscall event system\-wide and multiplex the per\-cpu output into a single stream. That single stream will be recorded in a file in the current directory called perf.data. .sp Once we have a perf.data file containing our data, we can use the \-g \fIperf script\fP option to generate a Python script that will contain a callback handler for each event type found in the perf.data trace stream (for more details, see the STARTER SCRIPTS section). .sp .if n .RS 4 .nf # perf script \-g python generated Python script: perf\-script.py The output file created also in the current directory is named perf\-script.py. Here\(aqs the file in its entirety: # perf script event handlers, generated by perf script \-g python # Licensed under the terms of the GNU GPL License version 2 # The common_* event handler fields are the most useful fields common to # all events. They don\(aqt necessarily correspond to the \(aqcommon_*\(aq fields # in the format files. Those fields not available as handler params can # be retrieved using Python functions of the form common_*(context). # See the perf\-script\-python Documentation for the list of available functions. import os import sys sys.path.append(os.environ[\(aqPERF_EXEC_PATH\(aq] + \(rs \(aq/scripts/python/Perf\-Trace\-Util/lib/Perf/Trace\(aq) from perf_trace_context import * from Core import * def trace_begin(): print "in trace_begin" def trace_end(): print "in trace_end" def raw_syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, id, args): print_header(event_name, common_cpu, common_secs, common_nsecs, common_pid, common_comm) print "id=%d, args=%s\(rsn" % \(rs (id, args), def trace_unhandled(event_name, context, event_fields_dict): print \(aq \(aq.join([\(aq%s=%s\(aq%(k,str(v))for k,v in sorted(event_fields_dict.items())]) def print_header(event_name, cpu, secs, nsecs, pid, comm): print "%\-20s %5u %05u.%09u %8u %\-20s " % \(rs (event_name, cpu, secs, nsecs, pid, comm), .fi .if n .RE .sp At the top is a comment block followed by some import statements and a path append which every perf script script should include. .sp Following that are a couple generated functions, trace_begin() and trace_end(), which are called at the beginning and the end of the script respectively (for more details, see the SCRIPT_LAYOUT section below). .sp Following those are the \fIevent handler\fP functions generated one for every event in the \fIperf record\fP output. The handler functions take the form subsystem\fIevent_name, and contain named parameters, one for each field in the event; in this case, there\(cqs only one event, raw_syscalls\fPsys_enter(). (see the EVENT HANDLERS section below for more info on event handlers). .sp The final couple of functions are, like the begin and end functions, generated for every script. The first, trace_unhandled(), is called every time the script finds an event in the perf.data file that doesn\(cqt correspond to any event handler in the script. This could mean either that the record step recorded event types that it wasn\(cqt really interested in, or the script was run against a trace file that doesn\(cqt correspond to the script. .sp The script generated by \-g option simply prints a line for each event found in the trace stream i.e. it basically just dumps the event and its parameter values to stdout. The print_header() function is simply a utility function used for that purpose. Let\(cqs rename the script and run it to see the default output: .sp .if n .RS 4 .nf # mv perf\-script.py syscall\-counts.py # perf script \-s syscall\-counts.py raw_syscalls__sys_enter 1 00840.847582083 7506 perf id=1, args= raw_syscalls__sys_enter 1 00840.847595764 7506 perf id=1, args= raw_syscalls__sys_enter 1 00840.847620860 7506 perf id=1, args= raw_syscalls__sys_enter 1 00840.847710478 6533 npviewer.bin id=78, args= raw_syscalls__sys_enter 1 00840.847719204 6533 npviewer.bin id=142, args= raw_syscalls__sys_enter 1 00840.847755445 6533 npviewer.bin id=3, args= raw_syscalls__sys_enter 1 00840.847775601 6533 npviewer.bin id=3, args= raw_syscalls__sys_enter 1 00840.847781820 6533 npviewer.bin id=3, args= \&. \&. \&. .fi .if n .RE .sp Of course, for this script, we\(cqre not interested in printing every trace event, but rather aggregating it in a useful way. So we\(cqll get rid of everything to do with printing as well as the trace_begin() and trace_unhandled() functions, which we won\(cqt be using. That leaves us with this minimalistic skeleton: .sp .if n .RS 4 .nf import os import sys sys.path.append(os.environ[\(aqPERF_EXEC_PATH\(aq] + \(rs \(aq/scripts/python/Perf\-Trace\-Util/lib/Perf/Trace\(aq) from perf_trace_context import * from Core import * def trace_end(): print "in trace_end" def raw_syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, id, args): .fi .if n .RE .sp In trace_end(), we\(cqll simply print the results, but first we need to generate some results to print. To do that we need to have our sys_enter() handler do the necessary tallying until all events have been counted. A hash table indexed by syscall id is a good way to store that information; every time the sys_enter() handler is called, we simply increment a count associated with that hash entry indexed by that syscall id: .sp .if n .RS 4 .nf syscalls = autodict() try: syscalls[id] += 1 except TypeError: syscalls[id] = 1 .fi .if n .RE .sp The syscalls \fIautodict\fP object is a special kind of Python dictionary (implemented in Core.py) that implements Perl\(cqs \fIautovivifying\fP hashes in Python i.e. with autovivifying hashes, you can assign nested hash values without having to go to the trouble of creating intermediate levels if they don\(cqt exist e.g syscalls[comm][pid][id] = 1 will create the intermediate hash levels and finally assign the value 1 to the hash entry for \fIid\fP (because the value being assigned isn\(cqt a hash object itself, the initial value is assigned in the TypeError exception. Well, there may be a better way to do this in Python but that\(cqs what works for now). .sp Putting that code into the raw_syscalls__sys_enter() handler, we effectively end up with a single\-level dictionary keyed on syscall id and having the counts we\(cqve tallied as values. .sp The print_syscall_totals() function iterates over the entries in the dictionary and displays a line for each entry containing the syscall name (the dictionary keys contain the syscall ids, which are passed to the Util function syscall_name(), which translates the raw syscall numbers to the corresponding syscall name strings). The output is displayed after all the events in the trace have been processed, by calling the print_syscall_totals() function from the trace_end() handler called at the end of script processing. .sp The final script producing the output shown above is shown in its entirety below (syscall_name() helper is not yet available, you can only deal with id\(cqs for now): .sp .if n .RS 4 .nf import os import sys sys.path.append(os.environ[\(aqPERF_EXEC_PATH\(aq] + \(rs \(aq/scripts/python/Perf\-Trace\-Util/lib/Perf/Trace\(aq) from perf_trace_context import * from Core import * from Util import * syscalls = autodict() def trace_end(): print_syscall_totals() def raw_syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, id, args): try: syscalls[id] += 1 except TypeError: syscalls[id] = 1 def print_syscall_totals(): if for_comm is not None: print "\(rsnsyscall events for %s:\(rsn\(rsn" % (for_comm), else: print "\(rsnsyscall events:\(rsn\(rsn", print "%\-40s %10s\(rsn" % ("event", "count"), print "%\-40s %10s\(rsn" % ("\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-", \(rs "\-\-\-\-\-\-\-\-\-\-\-"), for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \(rs reverse = True): print "%\-40s %10d\(rsn" % (syscall_name(id), val), .fi .if n .RE .sp The script can be run just as before: .sp .if n .RS 4 .nf # perf script \-s syscall\-counts.py .fi .if n .RE .sp So those are the essential steps in writing and running a script. The process can be generalized to any tracepoint or set of tracepoints you\(cqre interested in \- basically find the tracepoint(s) you\(cqre interested in by looking at the list of available events shown by \fIperf list\fP and/or look in /sys/kernel/debug/tracing/events/ for detailed event and field info, record the corresponding trace data using \fIperf record\fP, passing it the list of interesting events, generate a skeleton script using \fIperf script \-g python\fP and modify the code to aggregate and display it for your particular needs. .sp After you\(cqve done that you may end up with a general\-purpose script that you want to keep around and have available for future use. By writing a couple of very simple shell scripts and putting them in the right place, you can have your script listed alongside the other scripts listed by the \fIperf script \-l\fP command e.g.: .sp .if n .RS 4 .nf # perf script \-l List of available trace scripts: wakeup\-latency system\-wide min/max/avg wakeup latency rw\-by\-file r/w activity for a program, by file rw\-by\-pid system\-wide r/w activity .fi .if n .RE .sp A nice side effect of doing this is that you also then capture the probably lengthy \fIperf record\fP command needed to record the events for the script. .sp To have the script appear as a \fIbuilt\-in\fP script, you write two simple scripts, one for recording and one for \fIreporting\fP. .sp The \fIrecord\fP script is a shell script with the same base name as your script, but with \-record appended. The shell script should be put into the perf/scripts/python/bin directory in the kernel source tree. In that script, you write the \fIperf record\fP command\-line needed for your script: .sp .if n .RS 4 .nf # cat kernel\-source/tools/perf/scripts/python/bin/syscall\-counts\-record #!/bin/bash perf record \-a \-e raw_syscalls:sys_enter .fi .if n .RE .sp The \fIreport\fP script is also a shell script with the same base name as your script, but with \-report appended. It should also be located in the perf/scripts/python/bin directory. In that script, you write the \fIperf script \-s\fP command\-line needed for running your script: .sp .if n .RS 4 .nf # cat kernel\-source/tools/perf/scripts/python/bin/syscall\-counts\-report #!/bin/bash # description: system\-wide syscall counts perf script \-s ~/libexec/perf\-core/scripts/python/syscall\-counts.py .fi .if n .RE .sp Note that the location of the Python script given in the shell script is in the libexec/perf\-core/scripts/python directory \- this is where the script will be copied by \fImake install\fP when you install perf. For the installation to install your script there, your script needs to be located in the perf/scripts/python directory in the kernel source tree: .sp .if n .RS 4 .nf # ls \-al kernel\-source/tools/perf/scripts/python total 32 drwxr\-xr\-x 4 trz trz 4096 2010\-01\-26 22:30 . drwxr\-xr\-x 4 trz trz 4096 2010\-01\-26 22:29 .. drwxr\-xr\-x 2 trz trz 4096 2010\-01\-26 22:29 bin \-rw\-r\-\-r\-\- 1 trz trz 2548 2010\-01\-26 22:29 check\-perf\-script.py drwxr\-xr\-x 3 trz trz 4096 2010\-01\-26 22:49 Perf\-Trace\-Util \-rw\-r\-\-r\-\- 1 trz trz 1462 2010\-01\-26 22:30 syscall\-counts.py .fi .if n .RE .sp Once you\(cqve done that (don\(cqt forget to do a new \fImake install\fP, otherwise your script won\(cqt show up at run\-time), \fIperf script \-l\fP should show a new entry for your script: .sp .if n .RS 4 .nf # perf script \-l List of available trace scripts: wakeup\-latency system\-wide min/max/avg wakeup latency rw\-by\-file r/w activity for a program, by file rw\-by\-pid system\-wide r/w activity syscall\-counts system\-wide syscall counts .fi .if n .RE .sp You can now perform the record step via \fIperf script record\fP: .sp .if n .RS 4 .nf # perf script record syscall\-counts .fi .if n .RE .sp and display the output using \fIperf script report\fP: .sp .if n .RS 4 .nf # perf script report syscall\-counts .fi .if n .RE .SH "STARTER SCRIPTS" .sp You can quickly get started writing a script for a particular set of trace data by generating a skeleton script using \fIperf script \-g python\fP in the same directory as an existing perf.data trace file. That will generate a starter script containing a handler for each of the event types in the trace file; it simply prints every available field for each event in the trace file. .sp You can also look at the existing scripts in ~/libexec/perf\-core/scripts/python for typical examples showing how to do basic things like aggregate event data, print results, etc. Also, the check\-perf\-script.py script, while not interesting for its results, attempts to exercise all of the main scripting features. .SH "EVENT HANDLERS" .sp When perf script is invoked using a trace script, a user\-defined \fIhandler function\fP is called for each event in the trace. If there\(cqs no handler function defined for a given event type, the event is ignored (or passed to a \fItrace_unhandled\fP function, see below) and the next event is processed. .sp Most of the event\(cqs field values are passed as arguments to the handler function; some of the less common ones aren\(cqt \- those are available as calls back into the perf executable (see below). .sp As an example, the following perf record command can be used to record all sched_wakeup events in the system: .sp .if n .RS 4 .nf # perf record \-a \-e sched:sched_wakeup .fi .if n .RE .sp Traces meant to be processed using a script should be recorded with the above option: \-a to enable system\-wide collection. .sp The format file for the sched_wakep event defines the following fields (see /sys/kernel/debug/tracing/events/sched/sched_wakeup/format): .sp .if n .RS 4 .nf format: field:unsigned short common_type; field:unsigned char common_flags; field:unsigned char common_preempt_count; field:int common_pid; field:char comm[TASK_COMM_LEN]; field:pid_t pid; field:int prio; field:int success; field:int target_cpu; .fi .if n .RE .sp The handler function for this event would be defined as: .sp .if n .RS 4 .nf def sched__sched_wakeup(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, comm, pid, prio, success, target_cpu): pass .fi .if n .RE .sp The handler function takes the form subsystem__event_name. .sp The common_* arguments in the handler\(cqs argument list are the set of arguments passed to all event handlers; some of the fields correspond to the common_* fields in the format file, but some are synthesized, and some of the common_* fields aren\(cqt common enough to to be passed to every event as arguments but are available as library functions. .sp Here\(cqs a brief description of each of the invariant event args: .sp .if n .RS 4 .nf event_name the name of the event as text context an opaque \(aqcookie\(aq used in calls back into perf common_cpu the cpu the event occurred on common_secs the secs portion of the event timestamp common_nsecs the nsecs portion of the event timestamp common_pid the pid of the current task common_comm the name of the current process .fi .if n .RE .sp All of the remaining fields in the event\(cqs format file have counterparts as handler function arguments of the same name, as can be seen in the example above. .sp The above provides the basics needed to directly access every field of every event in a trace, which covers 90% of what you need to know to write a useful trace script. The sections below cover the rest. .SH "SCRIPT LAYOUT" .sp Every perf script Python script should start by setting up a Python module search path and \(aqimport\(cqing a few support modules (see module descriptions below): .sp .if n .RS 4 .nf import os import sys sys.path.append(os.environ[\(aqPERF_EXEC_PATH\(aq] + \(rs \(aq/scripts/python/Perf\-Trace\-Util/lib/Perf/Trace\(aq) from perf_trace_context import * from Core import * .fi .if n .RE .sp The rest of the script can contain handler functions and support functions in any order. .sp Aside from the event handler functions discussed above, every script can implement a set of optional functions: .sp \fBtrace_begin\fP, if defined, is called before any event is processed and gives scripts a chance to do setup tasks: .sp .if n .RS 4 .nf def trace_begin(): pass .fi .if n .RE .sp \fBtrace_end\fP, if defined, is called after all events have been processed and gives scripts a chance to do end\-of\-script tasks, such as display results: .sp .if n .RS 4 .nf def trace_end(): pass .fi .if n .RE .sp \fBtrace_unhandled\fP, if defined, is called after for any event that doesn\(cqt have a handler explicitly defined for it. The standard set of common arguments are passed into it: .sp .if n .RS 4 .nf def trace_unhandled(event_name, context, event_fields_dict): pass .fi .if n .RE .sp The remaining sections provide descriptions of each of the available built\-in perf script Python modules and their associated functions. .SH "AVAILABLE MODULES AND FUNCTIONS" .sp The following sections describe the functions and variables available via the various perf script Python modules. To use the functions and variables from the given module, add the corresponding \fIfrom XXXX import\fP line to your perf script script. .SS "Core.py Module" .sp These functions provide some essential functions to user scripts. .sp The \fBflag_str\fP and \fBsymbol_str\fP functions provide human\-readable strings for flag and symbolic fields. These correspond to the strings and values parsed from the \fIprint fmt\fP fields of the event format files: .sp .if n .RS 4 .nf flag_str(event_name, field_name, field_value) \- returns the string representation corresponding to field_value for the flag field field_name of event event_name symbol_str(event_name, field_name, field_value) \- returns the string representation corresponding to field_value for the symbolic field field_name of event event_name .fi .if n .RE .sp The \fBautodict\fP function returns a special kind of Python dictionary that implements Perl\(cqs \fIautovivifying\fP hashes in Python i.e. with autovivifying hashes, you can assign nested hash values without having to go to the trouble of creating intermediate levels if they don\(cqt exist. .sp .if n .RS 4 .nf autodict() \- returns an autovivifying dictionary instance .fi .if n .RE .SS "perf_trace_context Module" .sp Some of the \fIcommon\fP fields in the event format file aren\(cqt all that common, but need to be made accessible to user scripts nonetheless. .sp perf_trace_context defines a set of functions that can be used to access this data in the context of the current event. Each of these functions expects a context variable, which is the same as the context variable passed into every event handler as the second argument. .sp .if n .RS 4 .nf common_pc(context) \- returns common_preempt count for the current event common_flags(context) \- returns common_flags for the current event common_lock_depth(context) \- returns common_lock_depth for the current event .fi .if n .RE .SS "Util.py Module" .sp Various utility functions for use with perf script: .sp .if n .RS 4 .nf nsecs(secs, nsecs) \- returns total nsecs given secs/nsecs pair nsecs_secs(nsecs) \- returns whole secs portion given nsecs nsecs_nsecs(nsecs) \- returns nsecs remainder given nsecs nsecs_str(nsecs) \- returns printable string in the form secs.nsecs avg(total, n) \- returns average given a sum and a total number of values .fi .if n .RE .SH "SUPPORTED FIELDS" .sp Currently supported fields: .sp ev_name, comm, pid, tid, cpu, ip, time, period, phys_addr, addr, symbol, dso, time_enabled, time_running, values, callchain, brstack, brstacksym, datasrc, datasrc_decode, iregs, uregs, weight, transaction, raw_buf, attr. .sp Some fields have sub items: .sp brstack: from, to, from_dsoname, to_dsoname, mispred, predicted, in_tx, abort, cycles. .sp brstacksym: items: from, to, pred, in_tx, abort (converted string) .sp For example, We can use this code to print brstack "from", "to", "cycles". .sp if \fIbrstack\fP in dict: for entry in dict[\fIbrstack\fP]: print "from %s, to %s, cycles %s" % (entry["from"], entry["to"], entry["cycles"]) .SH "SEE ALSO" .sp perf\-script(1)