-
Notifications
You must be signed in to change notification settings - Fork 32
/
iopp.8
133 lines (131 loc) · 1.95 KB
/
iopp.8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
.\" Process this file with
.\" groff -man -Tascii iopp.8
.\"
.TH IOPP 8 "OCTOBER 2008" IOPP ""
.SH NAME
iopp \- I/O statistics per process
.SH SYNOPSIS
.B iopp -h|--help
.B iopp [\-ci] [\-k|\-m|\-u] [
.I delay
.B [
.I count
.B ] ]
.B iopp [\-\-command] [\-\-idle] [\-\-kilobytes|\-\-megabytes|\-\-human\-readable] [
.I delay
.B [
.I count
.B ] ]
.SH DESCRIPTION
.B iopp
reports I/O information from each process on the system.
.SH OPTIONS
.SS
.B \-c, \-\-command
.NF
display full command line
.FI
.PP
.SS
.B \-h, \-\-help
.NF
display help
.FI
.PP
.SS
.B \-i, \-\-idle
hide idle processes
.FI
.PP
.SS
.B \-k, \-\-kilobytes
display data in kilobytes
.FI
.PP
.SS
.B \-m, \-\-megabytes
.NF
display data in megabytes
.FI
.PP
.SS
.B \-u, \-\-human-readable
.NF
display data in bytes, kilobytes, megabytes, or gigabytes
.FI
.PP
.SS
.I delay
.NF
delay between updates in seconds, if no delay is specified then only one
report of 0's (zeros) is printed
.FI
.PP
.SS
.I count
.NF
the number of updates, if no count is specified and delay is defined then
count defaults to infinity
.FI
.PP
.SH FIELD DESCRIPTION
.SS
.B pid
.NF
The process id.
.FI
.PP
.SS
.B rchar
.NF
The number of bytes which this task has caused to be read from storage.
.FI
.PP
.SS
.B wchar
.NF
The number of bytes which this task has caused, or shall cause to be
written to disk.
.FI
.PP
.SS
.B syscr
.NF
Count of the number of read I/O operations.
.FI
.PP
.SS
.B syscw
.NF
Count of the number of write I/O operations.
.FI
.PP
.SS
.B rbytes rkb rmb reads
.NF
Count of the number of bytes which this process really did cause to be
fetched from the storage layer.
.FI
.PP
.SS
.B wbytes wkb wmb writes
.NF
Count of the number of bytes which this process really did cause to be
sent to the storage layer.
.FI
.PP
.SS
.B cwbytes cwkb cwmb cwrites
.NF
The number of bytes which this process caused to not happen, by
truncating pagecache.
.FI
.PP
.SS
.B command
.NF
Filename of the executable.
.FI
.PP
.SH AUTHOR
Mark Wong <[email protected]>