pandora: defconfig: update
[pandora-kernel.git] / tools / perf / Documentation / perf-script-python.txt
1 perf-script-python(1)
2 ====================
3
4 NAME
5 ----
6 perf-script-python - Process trace data with a Python script
7
8 SYNOPSIS
9 --------
10 [verse]
11 'perf script' [-s [Python]:script[.py] ]
12
13 DESCRIPTION
14 -----------
15
16 This perf script option is used to process perf script data using perf's
17 built-in Python interpreter.  It reads and processes the input file and
18 displays the results of the trace analysis implemented in the given
19 Python script, if any.
20
21 A QUICK EXAMPLE
22 ---------------
23
24 This section shows the process, start to finish, of creating a working
25 Python script that aggregates and extracts useful information from a
26 raw perf script stream.  You can avoid reading the rest of this
27 document if an example is enough for you; the rest of the document
28 provides more details on each step and lists the library functions
29 available to script writers.
30
31 This example actually details the steps that were used to create the
32 'syscall-counts' script you see when you list the available perf script
33 scripts via 'perf script -l'.  As such, this script also shows how to
34 integrate your script into the list of general-purpose 'perf script'
35 scripts listed by that command.
36
37 The syscall-counts script is a simple script, but demonstrates all the
38 basic ideas necessary to create a useful script.  Here's an example
39 of its output (syscall names are not yet supported, they will appear
40 as numbers):
41
42 ----
43 syscall events:
44
45 event                                          count
46 ----------------------------------------  -----------
47 sys_write                                     455067
48 sys_getdents                                    4072
49 sys_close                                       3037
50 sys_swapoff                                     1769
51 sys_read                                         923
52 sys_sched_setparam                               826
53 sys_open                                         331
54 sys_newfstat                                     326
55 sys_mmap                                         217
56 sys_munmap                                       216
57 sys_futex                                        141
58 sys_select                                       102
59 sys_poll                                          84
60 sys_setitimer                                     12
61 sys_writev                                         8
62 15                                                 8
63 sys_lseek                                          7
64 sys_rt_sigprocmask                                 6
65 sys_wait4                                          3
66 sys_ioctl                                          3
67 sys_set_robust_list                                1
68 sys_exit                                           1
69 56                                                 1
70 sys_access                                         1
71 ----
72
73 Basically our task is to keep a per-syscall tally that gets updated
74 every time a system call occurs in the system.  Our script will do
75 that, but first we need to record the data that will be processed by
76 that script.  Theoretically, there are a couple of ways we could do
77 that:
78
79 - we could enable every event under the tracing/events/syscalls
80   directory, but this is over 600 syscalls, well beyond the number
81   allowable by perf.  These individual syscall events will however be
82   useful if we want to later use the guidance we get from the
83   general-purpose scripts to drill down and get more detail about
84   individual syscalls of interest.
85
86 - we can enable the sys_enter and/or sys_exit syscalls found under
87   tracing/events/raw_syscalls.  These are called for all syscalls; the
88   'id' field can be used to distinguish between individual syscall
89   numbers.
90
91 For this script, we only need to know that a syscall was entered; we
92 don't care how it exited, so we'll use 'perf record' to record only
93 the sys_enter events:
94
95 ----
96 # perf record -a -e raw_syscalls:sys_enter
97
98 ^C[ perf record: Woken up 1 times to write data ]
99 [ perf record: Captured and wrote 56.545 MB perf.data (~2470503 samples) ]
100 ----
101
102 The options basically say to collect data for every syscall event
103 system-wide and multiplex the per-cpu output into a single stream.
104 That single stream will be recorded in a file in the current directory
105 called perf.data.
106
107 Once we have a perf.data file containing our data, we can use the -g
108 'perf script' option to generate a Python script that will contain a
109 callback handler for each event type found in the perf.data trace
110 stream (for more details, see the STARTER SCRIPTS section).
111
112 ----
113 # perf script -g python
114 generated Python script: perf-script.py
115
116 The output file created also in the current directory is named
117 perf-script.py.  Here's the file in its entirety:
118
119 # perf script event handlers, generated by perf script -g python
120 # Licensed under the terms of the GNU GPL License version 2
121
122 # The common_* event handler fields are the most useful fields common to
123 # all events.  They don't necessarily correspond to the 'common_*' fields
124 # in the format files.  Those fields not available as handler params can
125 # be retrieved using Python functions of the form common_*(context).
126 # See the perf-script-python Documentation for the list of available functions.
127
128 import os
129 import sys
130
131 sys.path.append(os.environ['PERF_EXEC_PATH'] + \
132         '/scripts/python/perf-script-Util/lib/Perf/Trace')
133
134 from perf_trace_context import *
135 from Core import *
136
137 def trace_begin():
138         print "in trace_begin"
139
140 def trace_end():
141         print "in trace_end"
142
143 def raw_syscalls__sys_enter(event_name, context, common_cpu,
144         common_secs, common_nsecs, common_pid, common_comm,
145         id, args):
146                 print_header(event_name, common_cpu, common_secs, common_nsecs,
147                         common_pid, common_comm)
148
149                 print "id=%d, args=%s\n" % \
150                 (id, args),
151
152 def trace_unhandled(event_name, context, event_fields_dict):
153                 print ' '.join(['%s=%s'%(k,str(v))for k,v in sorted(event_fields_dict.items())])
154
155 def print_header(event_name, cpu, secs, nsecs, pid, comm):
156         print "%-20s %5u %05u.%09u %8u %-20s " % \
157         (event_name, cpu, secs, nsecs, pid, comm),
158 ----
159
160 At the top is a comment block followed by some import statements and a
161 path append which every perf script script should include.
162
163 Following that are a couple generated functions, trace_begin() and
164 trace_end(), which are called at the beginning and the end of the
165 script respectively (for more details, see the SCRIPT_LAYOUT section
166 below).
167
168 Following those are the 'event handler' functions generated one for
169 every event in the 'perf record' output.  The handler functions take
170 the form subsystem__event_name, and contain named parameters, one for
171 each field in the event; in this case, there's only one event,
172 raw_syscalls__sys_enter().  (see the EVENT HANDLERS section below for
173 more info on event handlers).
174
175 The final couple of functions are, like the begin and end functions,
176 generated for every script.  The first, trace_unhandled(), is called
177 every time the script finds an event in the perf.data file that
178 doesn't correspond to any event handler in the script.  This could
179 mean either that the record step recorded event types that it wasn't
180 really interested in, or the script was run against a trace file that
181 doesn't correspond to the script.
182
183 The script generated by -g option simply prints a line for each
184 event found in the trace stream i.e. it basically just dumps the event
185 and its parameter values to stdout.  The print_header() function is
186 simply a utility function used for that purpose.  Let's rename the
187 script and run it to see the default output:
188
189 ----
190 # mv perf-script.py syscall-counts.py
191 # perf script -s syscall-counts.py
192
193 raw_syscalls__sys_enter     1 00840.847582083     7506 perf                  id=1, args=
194 raw_syscalls__sys_enter     1 00840.847595764     7506 perf                  id=1, args=
195 raw_syscalls__sys_enter     1 00840.847620860     7506 perf                  id=1, args=
196 raw_syscalls__sys_enter     1 00840.847710478     6533 npviewer.bin          id=78, args=
197 raw_syscalls__sys_enter     1 00840.847719204     6533 npviewer.bin          id=142, args=
198 raw_syscalls__sys_enter     1 00840.847755445     6533 npviewer.bin          id=3, args=
199 raw_syscalls__sys_enter     1 00840.847775601     6533 npviewer.bin          id=3, args=
200 raw_syscalls__sys_enter     1 00840.847781820     6533 npviewer.bin          id=3, args=
201 .
202 .
203 .
204 ----
205
206 Of course, for this script, we're not interested in printing every
207 trace event, but rather aggregating it in a useful way.  So we'll get
208 rid of everything to do with printing as well as the trace_begin() and
209 trace_unhandled() functions, which we won't be using.  That leaves us
210 with this minimalistic skeleton:
211
212 ----
213 import os
214 import sys
215
216 sys.path.append(os.environ['PERF_EXEC_PATH'] + \
217         '/scripts/python/perf-script-Util/lib/Perf/Trace')
218
219 from perf_trace_context import *
220 from Core import *
221
222 def trace_end():
223         print "in trace_end"
224
225 def raw_syscalls__sys_enter(event_name, context, common_cpu,
226         common_secs, common_nsecs, common_pid, common_comm,
227         id, args):
228 ----
229
230 In trace_end(), we'll simply print the results, but first we need to
231 generate some results to print.  To do that we need to have our
232 sys_enter() handler do the necessary tallying until all events have
233 been counted.  A hash table indexed by syscall id is a good way to
234 store that information; every time the sys_enter() handler is called,
235 we simply increment a count associated with that hash entry indexed by
236 that syscall id:
237
238 ----
239   syscalls = autodict()
240
241   try:
242     syscalls[id] += 1
243   except TypeError:
244     syscalls[id] = 1
245 ----
246
247 The syscalls 'autodict' object is a special kind of Python dictionary
248 (implemented in Core.py) that implements Perl's 'autovivifying' hashes
249 in Python i.e. with autovivifying hashes, you can assign nested hash
250 values without having to go to the trouble of creating intermediate
251 levels if they don't exist e.g syscalls[comm][pid][id] = 1 will create
252 the intermediate hash levels and finally assign the value 1 to the
253 hash entry for 'id' (because the value being assigned isn't a hash
254 object itself, the initial value is assigned in the TypeError
255 exception.  Well, there may be a better way to do this in Python but
256 that's what works for now).
257
258 Putting that code into the raw_syscalls__sys_enter() handler, we
259 effectively end up with a single-level dictionary keyed on syscall id
260 and having the counts we've tallied as values.
261
262 The print_syscall_totals() function iterates over the entries in the
263 dictionary and displays a line for each entry containing the syscall
264 name (the dictonary keys contain the syscall ids, which are passed to
265 the Util function syscall_name(), which translates the raw syscall
266 numbers to the corresponding syscall name strings).  The output is
267 displayed after all the events in the trace have been processed, by
268 calling the print_syscall_totals() function from the trace_end()
269 handler called at the end of script processing.
270
271 The final script producing the output shown above is shown in its
272 entirety below (syscall_name() helper is not yet available, you can
273 only deal with id's for now):
274
275 ----
276 import os
277 import sys
278
279 sys.path.append(os.environ['PERF_EXEC_PATH'] + \
280         '/scripts/python/perf-script-Util/lib/Perf/Trace')
281
282 from perf_trace_context import *
283 from Core import *
284 from Util import *
285
286 syscalls = autodict()
287
288 def trace_end():
289         print_syscall_totals()
290
291 def raw_syscalls__sys_enter(event_name, context, common_cpu,
292         common_secs, common_nsecs, common_pid, common_comm,
293         id, args):
294         try:
295                 syscalls[id] += 1
296         except TypeError:
297                 syscalls[id] = 1
298
299 def print_syscall_totals():
300     if for_comm is not None:
301             print "\nsyscall events for %s:\n\n" % (for_comm),
302     else:
303             print "\nsyscall events:\n\n",
304
305     print "%-40s  %10s\n" % ("event", "count"),
306     print "%-40s  %10s\n" % ("----------------------------------------", \
307                                  "-----------"),
308
309     for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \
310                                   reverse = True):
311             print "%-40s  %10d\n" % (syscall_name(id), val),
312 ----
313
314 The script can be run just as before:
315
316   # perf script -s syscall-counts.py
317
318 So those are the essential steps in writing and running a script.  The
319 process can be generalized to any tracepoint or set of tracepoints
320 you're interested in - basically find the tracepoint(s) you're
321 interested in by looking at the list of available events shown by
322 'perf list' and/or look in /sys/kernel/debug/tracing/events/ for
323 detailed event and field info, record the corresponding trace data
324 using 'perf record', passing it the list of interesting events,
325 generate a skeleton script using 'perf script -g python' and modify the
326 code to aggregate and display it for your particular needs.
327
328 After you've done that you may end up with a general-purpose script
329 that you want to keep around and have available for future use.  By
330 writing a couple of very simple shell scripts and putting them in the
331 right place, you can have your script listed alongside the other
332 scripts listed by the 'perf script -l' command e.g.:
333
334 ----
335 # perf script -l
336 List of available trace scripts:
337   workqueue-stats                      workqueue stats (ins/exe/create/destroy)
338   wakeup-latency                       system-wide min/max/avg wakeup latency
339   rw-by-file <comm>                    r/w activity for a program, by file
340   rw-by-pid                            system-wide r/w activity
341 ----
342
343 A nice side effect of doing this is that you also then capture the
344 probably lengthy 'perf record' command needed to record the events for
345 the script.
346
347 To have the script appear as a 'built-in' script, you write two simple
348 scripts, one for recording and one for 'reporting'.
349
350 The 'record' script is a shell script with the same base name as your
351 script, but with -record appended.  The shell script should be put
352 into the perf/scripts/python/bin directory in the kernel source tree.
353 In that script, you write the 'perf record' command-line needed for
354 your script:
355
356 ----
357 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-record
358
359 #!/bin/bash
360 perf record -a -e raw_syscalls:sys_enter
361 ----
362
363 The 'report' script is also a shell script with the same base name as
364 your script, but with -report appended.  It should also be located in
365 the perf/scripts/python/bin directory.  In that script, you write the
366 'perf script -s' command-line needed for running your script:
367
368 ----
369 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-report
370
371 #!/bin/bash
372 # description: system-wide syscall counts
373 perf script -s ~/libexec/perf-core/scripts/python/syscall-counts.py
374 ----
375
376 Note that the location of the Python script given in the shell script
377 is in the libexec/perf-core/scripts/python directory - this is where
378 the script will be copied by 'make install' when you install perf.
379 For the installation to install your script there, your script needs
380 to be located in the perf/scripts/python directory in the kernel
381 source tree:
382
383 ----
384 # ls -al kernel-source/tools/perf/scripts/python
385 total 32
386 drwxr-xr-x 4 trz trz 4096 2010-01-26 22:30 .
387 drwxr-xr-x 4 trz trz 4096 2010-01-26 22:29 ..
388 drwxr-xr-x 2 trz trz 4096 2010-01-26 22:29 bin
389 -rw-r--r-- 1 trz trz 2548 2010-01-26 22:29 check-perf-script.py
390 drwxr-xr-x 3 trz trz 4096 2010-01-26 22:49 perf-script-Util
391 -rw-r--r-- 1 trz trz 1462 2010-01-26 22:30 syscall-counts.py
392 ----
393
394 Once you've done that (don't forget to do a new 'make install',
395 otherwise your script won't show up at run-time), 'perf script -l'
396 should show a new entry for your script:
397
398 ----
399 # perf script -l
400 List of available trace scripts:
401   workqueue-stats                      workqueue stats (ins/exe/create/destroy)
402   wakeup-latency                       system-wide min/max/avg wakeup latency
403   rw-by-file <comm>                    r/w activity for a program, by file
404   rw-by-pid                            system-wide r/w activity
405   syscall-counts                       system-wide syscall counts
406 ----
407
408 You can now perform the record step via 'perf script record':
409
410   # perf script record syscall-counts
411
412 and display the output using 'perf script report':
413
414   # perf script report syscall-counts
415
416 STARTER SCRIPTS
417 ---------------
418
419 You can quickly get started writing a script for a particular set of
420 trace data by generating a skeleton script using 'perf script -g
421 python' in the same directory as an existing perf.data trace file.
422 That will generate a starter script containing a handler for each of
423 the event types in the trace file; it simply prints every available
424 field for each event in the trace file.
425
426 You can also look at the existing scripts in
427 ~/libexec/perf-core/scripts/python for typical examples showing how to
428 do basic things like aggregate event data, print results, etc.  Also,
429 the check-perf-script.py script, while not interesting for its results,
430 attempts to exercise all of the main scripting features.
431
432 EVENT HANDLERS
433 --------------
434
435 When perf script is invoked using a trace script, a user-defined
436 'handler function' is called for each event in the trace.  If there's
437 no handler function defined for a given event type, the event is
438 ignored (or passed to a 'trace_unhandled' function, see below) and the
439 next event is processed.
440
441 Most of the event's field values are passed as arguments to the
442 handler function; some of the less common ones aren't - those are
443 available as calls back into the perf executable (see below).
444
445 As an example, the following perf record command can be used to record
446 all sched_wakeup events in the system:
447
448  # perf record -a -e sched:sched_wakeup
449
450 Traces meant to be processed using a script should be recorded with
451 the above option: -a to enable system-wide collection.
452
453 The format file for the sched_wakep event defines the following fields
454 (see /sys/kernel/debug/tracing/events/sched/sched_wakeup/format):
455
456 ----
457  format:
458         field:unsigned short common_type;
459         field:unsigned char common_flags;
460         field:unsigned char common_preempt_count;
461         field:int common_pid;
462
463         field:char comm[TASK_COMM_LEN];
464         field:pid_t pid;
465         field:int prio;
466         field:int success;
467         field:int target_cpu;
468 ----
469
470 The handler function for this event would be defined as:
471
472 ----
473 def sched__sched_wakeup(event_name, context, common_cpu, common_secs,
474        common_nsecs, common_pid, common_comm,
475        comm, pid, prio, success, target_cpu):
476        pass
477 ----
478
479 The handler function takes the form subsystem__event_name.
480
481 The common_* arguments in the handler's argument list are the set of
482 arguments passed to all event handlers; some of the fields correspond
483 to the common_* fields in the format file, but some are synthesized,
484 and some of the common_* fields aren't common enough to to be passed
485 to every event as arguments but are available as library functions.
486
487 Here's a brief description of each of the invariant event args:
488
489  event_name                 the name of the event as text
490  context                    an opaque 'cookie' used in calls back into perf
491  common_cpu                 the cpu the event occurred on
492  common_secs                the secs portion of the event timestamp
493  common_nsecs               the nsecs portion of the event timestamp
494  common_pid                 the pid of the current task
495  common_comm                the name of the current process
496
497 All of the remaining fields in the event's format file have
498 counterparts as handler function arguments of the same name, as can be
499 seen in the example above.
500
501 The above provides the basics needed to directly access every field of
502 every event in a trace, which covers 90% of what you need to know to
503 write a useful trace script.  The sections below cover the rest.
504
505 SCRIPT LAYOUT
506 -------------
507
508 Every perf script Python script should start by setting up a Python
509 module search path and 'import'ing a few support modules (see module
510 descriptions below):
511
512 ----
513  import os
514  import sys
515
516  sys.path.append(os.environ['PERF_EXEC_PATH'] + \
517               '/scripts/python/perf-script-Util/lib/Perf/Trace')
518
519  from perf_trace_context import *
520  from Core import *
521 ----
522
523 The rest of the script can contain handler functions and support
524 functions in any order.
525
526 Aside from the event handler functions discussed above, every script
527 can implement a set of optional functions:
528
529 *trace_begin*, if defined, is called before any event is processed and
530 gives scripts a chance to do setup tasks:
531
532 ----
533 def trace_begin():
534     pass
535 ----
536
537 *trace_end*, if defined, is called after all events have been
538  processed and gives scripts a chance to do end-of-script tasks, such
539  as display results:
540
541 ----
542 def trace_end():
543     pass
544 ----
545
546 *trace_unhandled*, if defined, is called after for any event that
547  doesn't have a handler explicitly defined for it.  The standard set
548  of common arguments are passed into it:
549
550 ----
551 def trace_unhandled(event_name, context, event_fields_dict):
552     pass
553 ----
554
555 The remaining sections provide descriptions of each of the available
556 built-in perf script Python modules and their associated functions.
557
558 AVAILABLE MODULES AND FUNCTIONS
559 -------------------------------
560
561 The following sections describe the functions and variables available
562 via the various perf script Python modules.  To use the functions and
563 variables from the given module, add the corresponding 'from XXXX
564 import' line to your perf script script.
565
566 Core.py Module
567 ~~~~~~~~~~~~~~
568
569 These functions provide some essential functions to user scripts.
570
571 The *flag_str* and *symbol_str* functions provide human-readable
572 strings for flag and symbolic fields.  These correspond to the strings
573 and values parsed from the 'print fmt' fields of the event format
574 files:
575
576   flag_str(event_name, field_name, field_value) - returns the string represention corresponding to field_value for the flag field field_name of event event_name
577   symbol_str(event_name, field_name, field_value) - returns the string represention corresponding to field_value for the symbolic field field_name of event event_name
578
579 The *autodict* function returns a special kind of Python
580 dictionary that implements Perl's 'autovivifying' hashes in Python
581 i.e. with autovivifying hashes, you can assign nested hash values
582 without having to go to the trouble of creating intermediate levels if
583 they don't exist.
584
585   autodict() - returns an autovivifying dictionary instance
586
587
588 perf_trace_context Module
589 ~~~~~~~~~~~~~~~~~~~~~~~~~
590
591 Some of the 'common' fields in the event format file aren't all that
592 common, but need to be made accessible to user scripts nonetheless.
593
594 perf_trace_context defines a set of functions that can be used to
595 access this data in the context of the current event.  Each of these
596 functions expects a context variable, which is the same as the
597 context variable passed into every event handler as the second
598 argument.
599
600  common_pc(context) - returns common_preempt count for the current event
601  common_flags(context) - returns common_flags for the current event
602  common_lock_depth(context) - returns common_lock_depth for the current event
603
604 Util.py Module
605 ~~~~~~~~~~~~~~
606
607 Various utility functions for use with perf script:
608
609   nsecs(secs, nsecs) - returns total nsecs given secs/nsecs pair
610   nsecs_secs(nsecs) - returns whole secs portion given nsecs
611   nsecs_nsecs(nsecs) - returns nsecs remainder given nsecs
612   nsecs_str(nsecs) - returns printable string in the form secs.nsecs
613   avg(total, n) - returns average given a sum and a total number of values
614
615 SEE ALSO
616 --------
617 linkperf:perf-script[1]