![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
DESCRIPTIONThe ARGUMENTSThe fields of struct bio are described in the g_bio(9) manual page, and the fields of struct devstat are described in the devstat(9) manual page. Translators for the bufinfo_t and devinfo_t D types are defined in /usr/lib/dtrace/io.d. FILES
EXAMPLESThe following script shows a per-process breakdown of total I/O by disk device: #pragma D option quiet io:::start { @[args[1]->device_name, execname, pid] = sum(args[0]->bio_bcount); } END { printf("%10s %20s %10s %15s\n", "DEVICE", "APP", "PID", "BYTES"); printa("%10s %20s %10d %15@d\n", @); } COMPATIBILITYThis provider is not compatible with the
SEE ALSOHISTORYThe AUTHORSThis manual page was written by Mark Johnston <markj@FreeBSD.org>. BUGSThe
|