blob: 9a77bc73e8a3450ec26661b3db4f2faa388ea890 [file] [log] [blame]
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001perf-sched(1)
2==============
3
4NAME
5----
Ingo Molnarc13f0d32009-09-13 16:51:04 +02006perf-sched - Tool to trace/measure scheduler properties (latencies)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02007
8SYNOPSIS
9--------
10[verse]
David Ahern49394a22016-11-16 15:06:29 +090011'perf sched' {record|latency|map|replay|script|timehist}
Ingo Molnar0a02ad92009-09-11 12:12:54 +020012
13DESCRIPTION
14-----------
David Ahern49394a22016-11-16 15:06:29 +090015There are several variants of 'perf sched':
Ingo Molnarc13f0d32009-09-13 16:51:04 +020016
17 'perf sched record <command>' to record the scheduling events
18 of an arbitrary workload.
19
20 'perf sched latency' to report the per task scheduling latencies
21 and other scheduling properties of the workload.
22
Jiri Olsae78cb362011-09-27 11:16:35 +020023 'perf sched script' to see a detailed trace of the workload that
24 was recorded (aliased to 'perf script' for now).
Ingo Molnarc13f0d32009-09-13 16:51:04 +020025
26 'perf sched replay' to simulate the workload that was recorded
27 via perf sched record. (this is done by starting up mockup threads
28 that mimic the workload based on the events in the trace. These
29 threads can then replay the timings (CPU runtime and sleep patterns)
Randy Dunlap854c5542010-03-31 11:31:00 -070030 of the workload as it occurred when it was recorded - and can repeat
Ingo Molnarc13f0d32009-09-13 16:51:04 +020031 it a number of times, measuring its performance.)
Ingo Molnar0a02ad92009-09-11 12:12:54 +020032
Shawn Bohrer1eacc942010-11-30 19:57:18 -060033 'perf sched map' to print a textual context-switching outline of
34 workload captured via perf sched record. Columns stand for
35 individual CPUs, and the two-letter shortcuts stand for tasks that
36 are running on a CPU. A '*' denotes the CPU that had the event, and
37 a dot signals an idle CPU.
38
David Ahern49394a22016-11-16 15:06:29 +090039 'perf sched timehist' provides an analysis of scheduling events.
40
41 Example usage:
42 perf sched record -- sleep 1
43 perf sched timehist
44
45 By default it shows the individual schedule events, including the wait
46 time (time between sched-out and next sched-in events for the task), the
47 task scheduling delay (time between wakeup and actually running) and run
48 time for the task:
49
50 time cpu task name wait time sch delay run time
51 [tid/pid] (msec) (msec) (msec)
52 -------------- ------ -------------------- --------- --------- ---------
53 79371.874569 [0011] gcc[31949] 0.014 0.000 1.148
54 79371.874591 [0010] gcc[31951] 0.000 0.000 0.024
55 79371.874603 [0010] migration/10[59] 3.350 0.004 0.011
56 79371.874604 [0011] <idle> 1.148 0.000 0.035
57 79371.874723 [0005] <idle> 0.016 0.000 1.383
58 79371.874746 [0005] gcc[31949] 0.153 0.078 0.022
59 ...
60
61 Times are in msec.usec.
62
Ingo Molnar0a02ad92009-09-11 12:12:54 +020063OPTIONS
64-------
Shawn Bohrer1eacc942010-11-30 19:57:18 -060065-i::
66--input=<file>::
Robert Richterefad1412011-12-07 10:02:54 +010067 Input file name. (default: perf.data unless stdin is a fifo)
Shawn Bohrer1eacc942010-11-30 19:57:18 -060068
69-v::
70--verbose::
71 Be more verbose. (show symbol address, etc)
72
Ingo Molnar0a02ad92009-09-11 12:12:54 +020073-D::
74--dump-raw-trace=::
75 Display verbose dump of the sched data.
76
Jiri Olsa99623c62016-04-12 15:29:26 +020077OPTIONS for 'perf sched map'
78----------------------------
79
80--compact::
81 Show only CPUs with activity. Helps visualizing on high core
82 count systems.
83
Jiri Olsa73643bb2016-04-12 15:29:31 +020084--cpus::
85 Show just entries with activities for the given CPUs.
86
Jiri Olsacf294f22016-04-12 15:29:30 +020087--color-cpus::
88 Highlight the given cpus.
89
Jiri Olsaa151a372016-04-12 15:29:29 +020090--color-pids::
91 Highlight the given pids.
92
David Ahern49394a22016-11-16 15:06:29 +090093OPTIONS for 'perf sched timehist'
94---------------------------------
95-k::
96--vmlinux=<file>::
97 vmlinux pathname
98
99--kallsyms=<file>::
100 kallsyms pathname
101
102-s::
103--summary::
104 Show only a summary of scheduling by thread with min, max, and average
105 run times (in sec) and relative stddev.
106
107-S::
108--with-summary::
109 Show all scheduling events followed by a summary by thread with min,
110 max, and average run times (in sec) and relative stddev.
111
112--symfs=<directory>::
113 Look for files with symbols relative to this directory.
114
David Ahernfc1469f2016-11-16 15:06:31 +0900115-w::
116--wakeups::
117 Show wakeup events.
118
Ingo Molnar0a02ad92009-09-11 12:12:54 +0200119SEE ALSO
120--------
121linkperf:perf-record[1]