ps_disk_io_counters | R Documentation |
Returns a data.frame of system-wide disk I/O counters.
ps_disk_io_counters()
Includes the following non-NA fields for all supported platforms:
read_count
: number of reads
write_count
: number of writes
read_bytes
: number of bytes read
write_bytes
: number of bytes written
And for only some platforms:
read_time
: time spent reading from disk (in milliseconds)
write_time
: time spent writing to disk (in milliseconds)
busy_time
: time spent doing actual I/Os (in milliseconds)
read_merged_count
: number of merged reads (see iostats doc)
write_merged_count
: number of merged writes (see iostats doc)
A data frame of one row per disk of I/O stats, with columns
name
, read_count
read_merged_count
read_bytes
, read_time
,
write_count
, write_merged_count
, write_bytes
write_time
, and
busy_time
.
Other disk functions:
ps_disk_partitions()
,
ps_disk_usage()
ps_disk_io_counters()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.