BLKTRACE(8) | BLKTRACE(8) |
blktrace - generate traces of the i/o traffic on block devices
blktrace -d dev [ -r debugfs_path ] [ -o output ] [ -w time ] [ -a action ] [ -A action_mask ] [ -v ]
blktrace is a block layer IO tracing mechanism which provides detailed information about request queue operations up to user space. There are three major components: a kernel component, a utility to record the i/o trace information for the kernel to user space, and utilities to analyse and view the trace information. This man page describes blktrace, which records the i/o event trace information for a specific block device to a file.
The blktrace utility extracts event traces from the kernel (via the relaying through the debug file system). Some background details concerning the run-time behaviour of blktrace will help to understand some of the more arcane command line options:
Alternatively, one may specify the entire mask utilising a hexadecimal value that is version-specific. (Requires understanding of the internal representation of the filter mask.)
The device portion of the event file name can be changed via the -o option.
-A hex-mask
--set-mask=hex-mask
-a mask
--act-mask=mask
-b size
--buffer-size=size
-d dev
--dev=dev
-I file
--input-devs=file
-n num-sub
--num-sub-buffers=num-sub
-l
--listen
-h hostname
--host=hostname
-p number
--port=number
-s
--no-sendfile
-o basename
--output=basename
-D dir
--output-dir=dir
This only works when supplying a single device, or when piping the output via "-o -" with multiple devices.
-r rel-path
--relay=rel-path
-v
--version
-V
--version
-w seconds
--stopwatch=seconds
The following masks may be passed with the -a command line option, multiple filters may be combined via multiple -a command line options.
blktrace distinguishes between two types of block layer requests, file system and SCSI commands. The former are dubbed fs requests, the latter pc requests. File system requests are normal read/write operations, i.e. any type of read or write from a specific disk location at a given size. These requests typically originate from a user process, but they may also be initiated by the vm flushing dirty data to disk or the file system syncing a super or journal block to disk. pc requests are SCSI commands. blktrace sends the command data block as a payload so that blkparse can decode it.
To trace the i/o on the device /dev/sda and parse the output to human readable form, use the following command:
% blktrace -d /dev/sda -o - | blkparse -i -
This same behaviour can be achieve with the convenience script btrace. The command
% btrace /dev/sda
has exactly the same effect as the previous command. See btrace (8) for more information.
To trace the i/o on a device and save the output for later processing with blkparse, use blktrace like this:
% blktrace /dev/sda /dev/sdb
This will trace i/o on the devices /dev/sda and /dev/sdb and save the recorded information in the files sda and sdb in the current directory, for the two different devices, respectively. This trace information can later be parsed by the blkparse utility:
% blkparse sda sdb
which will output the previously recorded tracing information in human readable form to stdout. See blkparse (1) for more information.
blktrace was written by Jens Axboe, Alan D. Brunelle and Nathan Scott. This man page was created from the blktrace documentation by Bas Zoetekouw.
Report bugs to <linux-btrace@vger.kernel.org>
Copyright © 2006 Jens Axboe, Alan D. Brunelle and Nathan
Scott.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
This manual page was created for Debian by Bas Zoetekouw. It was derived from
the documentation provided by the authors and it may be used, distributed
and modified under the terms of the GNU General Public License, version 2.
On Debian systems, the text of the GNU General Public License can be found in
/usr/share/common-licenses/GPL-2.
btrace (8), blkparse (1), verify_blkparse (1), blkrawverify (1), btt (1)
March 6, 2007 | blktrace git-20070306202522 |