You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The old-style iostat display (using -o) shows the following statistics:
sps sectors transferred per second
tps transfers per second
msps average milliseconds per transaction
There is no clear separation between read and write operations, unification of metrics with linux is going to be difficult. If not possible because the metrics are inherently different, let's create new metrics.
The text was updated successfully, but these errors were encountered:
Looks like man 8 iostat on Mac doesn't reflect the actual command line options. Apparently iostat also uses the iostat [interval [count]] syntax (like Linux), but doesn't document it in the manpage or iostat -?... What I'm going to do is supply the -w and -c options for wait and count since those are in the manpage. (Still looking at how these map onto the Linux io stats.)
Apple's version of iostat reports different metrics than Linux, FreeBSD, or SunOS. This adds
three new metrics under system.io to log sectors per second (system.io.sectors), transfers per
second (system.io.transfers), and milliseconds per seek (ms_per_seek).
iostat -od 3 2
returnsOnly the last line matters.
The old-style iostat display (using -o) shows the following statistics:
There is no clear separation between read and write operations, unification of metrics with linux is going to be difficult. If not possible because the metrics are inherently different, let's create new metrics.
The text was updated successfully, but these errors were encountered: