[PATCH] blktrace.tex: add description of each possible action
[blktrace.git] / README
CommitLineData
d0ca268b
JA
1Block IO Tracing
2----------------
3
e7c9f3ff
NS
4Written by Jens Axboe <axboe@suse.de> (initial version and kernel support),
5Alan D. Brunelle (threading and splitup into two seperate programs),
6Nathan Scott <nathans@sgi.com> (bug fixes, process names, multiple devices)
d0ca268b
JA
7
8
c1bd9d09
JA
9Requirements
10------------
11
b2a8adbf 12You need to be running a 2.6.14-rc2 kernel or newer, with the blk-trace patch
56c7d54d 13included in this repository. If you forgot where you got it, the url is:
c1bd9d09
JA
14
15rsync://rsync.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git
16
6432fd98
JA
17If you don't have git, you can get hourly snapshots from:
18
19http://www.kernel.org/pub/linux/kernel/people/axboe/blktrace/
20
b2a8adbf
JA
21The snapshots include the full git object database as well. kernel.org has
22excessively long mirror times, so if you have git installed, you can pull
23the master tree from:
24
25git://brick.kernel.dk/data/git/blktrace.git
6432fd98 26
ab9b41a7
JA
27For browsing the repo over http and viewing history etc, you can direct
28your browser to:
29
30http://brick.kernel.dk/git
31
c1bd9d09
JA
32
33Usage
34-----
35
ab197ca7
AB
36$ blktrace -d <dev> [ -r relay_path ] [ -o output ] [ -k ] [ -w time ]
37 [ -a action ] [ -A action mask ]
38
39 -d Use specified device. May also be given last after options.
40 -r Path to mounted relayfs, defaults to /relay.
41 -o File(s) to send output to.
d1d7f15f 42 -D Directory to prepend to output file names.
ab197ca7
AB
43 -k Kill running trace.
44 -w Stop after defined time, in seconds.
45 -a Only trace specific actions (use more -a options to add actions).
46 Available actions are:
47
d0009925
JA
48 READ
49 WRITE
50 BARRIER
51 SYNC
52 QUEUE
53 REQUEUE
54 ISSUE
55 COMPLETE
56 FS
57 PC
ab197ca7
AB
58
59 -A Give the trace mask directly as a number.
60
52724a0e 61 -v Print program version info.
129aa440
JA
62 -b Sub buffer size in KiB.
63 -n Number of sub buffers.
52724a0e 64
ab197ca7
AB
65$ blkparse -i <input> [ -o <output> ] [ -b rb_batch ] [ -s ] [ -t ] [ -q ]
66 [ -w start:stop ] [ -f output format ] [ -F format spec ]
67
68 -i Input file containing trace data, or '-' for stdin.
d1d7f15f 69 -D Directory to prepend to input file names.
ab197ca7
AB
70 -o Output file. If not given, output is stdout.
71 -b stdin read batching.
72 -s Show per-program io statistics.
bf0720af 73 -n Hash processes by name, not pid.
ab197ca7
AB
74 -t Track individual ios. Will tell you the time a request took to
75 get queued, to get dispatched, and to get completed.
76 -q Quiet. Don't display any stats at the end of the trace.
77 -w Only parse data between the given time interval in seconds. If
78 'start' isn't given, blkparse defaults the start time to 0.
79 -f Output format. Customize the output format. The format field
80 identifiers are:
81
82 %a - Action
83 %c - CPU ID
84 %C - Task command name
85 %d - Direction (r/w)
86 %D - Device number
87 %e - Error number
88 %M - Major
89 %m - Minor
1c8ca7b5
JA
90 %N - Number of bytes
91 %n - Number of sectors
ab197ca7
AB
92 %p - PID
93 %P - PDU
94 %s - Sequence number
95 %S - Sector number
96 %t - Time (wallclock - nanoseconds)
97 %T - Time (wallclock - seconds)
98 %u - Time (processing - microseconds)
638c1923 99 %U - Unplug depth
ab197ca7
AB
100
101 -F Format specification. The individual specifiers are:
102
103 B - Back merge
104 C - Complete
105 D - Issue
106 F - Front merge
107 G - Get request
b6076a9b 108 I - Insert
ab197ca7
AB
109 M - Both front and back merge
110 P - Plug
111 Q - Queue
112 R - Requeue
113 S - Sleep requests
114 T - Unplug timer
115 U - Unplug IO
93f1c611
JA
116 W - Bounce
117 X - Split
c1bd9d09 118
7d1c0411 119 -m Print missing entries.
52724a0e 120 -v Print program version info.
c1bd9d09 121
54aa4b1c
JA
122$ verify_blkparse filename
123
124 Verifies an output file from blkparse. All it does is check if
125 the events in the file are correctly time ordered. If an entry
126 is found that isn't ordered, it's dumped to stdout.
127
128
d0009925
JA
129If you want to do live tracing, you can pipe the data between blktrace
130and blkparse:
131
132% blktrace -d <device> -o - | blkparse -i -
133
134This has a small risk of displaying some traces a little out of sync, since
135it will do batch sorts of input events. Similarly, you can do traces over
136the network with eg netcat:
137
138% blktrace -d /dev/sda -o - | netcat parsehost portno
ebc37a0b 139% netcat -l -p portno tracehost | blkparse -i -
d0009925
JA
140
141Which will send the traces from tracehost to parsehost over the network on
142the defined port number.
143
144
8d99d141
JA
145Resources
146---------
147
148vger hosts a mailing list dedicated to btrace discussion and development.
149The list is called linux-btrace@vger.kernel.org, subscribe by sending
150a mail to majordomo@vger.kernel.org with 'subscribe linux-btrace' in
151the mail body.
152
153
154
d0009925 15520050906, Jens Axboe <axboe@suse.de>
c1bd9d09 156