summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-02-18 00:24:57 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2016-02-18 00:24:57 +0100
commitc92e047ae34e577f31f9d9a6134c1b222c6aa85a (patch)
treeb85774fea093b167166542e5171501412a3108b6
parent42b34049cf96e845b6423db91f991849a2f87578 (diff)
downloadpsutil-722-net-io-ext.tar.gz
update doc722-net-io-ext
-rw-r--r--docs/index.rst29
1 files changed, 3 insertions, 26 deletions
diff --git a/docs/index.rst b/docs/index.rst
index d610f102..286f8a6a 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -267,38 +267,15 @@ Disks
Return system-wide disk I/O statistics as a namedtuple including the
following fields.
-
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | Linux | OSX | Solaris | Windows | FreeBSD | OpenBSD | NetBSD |
- +====================+=============+=============+=============+=============+=============+=============+
- | read_count | read_count | read_count | read_count | read_count | read_count | read_count |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | write_count | write_count | write_count | write_count | write_count | write_count | write_count |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | read_bytes | read_bytes | read_bytes | read_bytes | read_bytes | read_bytes | read_bytes |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | write_bytes | write_bytes | write_bytes | write_bytes | write_bytes | write_bytes | write_bytes |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | read_time | read_time | read_time | read_time | read_time | read_time | |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | write_time | write_time | write_time | write_time | write_time | write_time | |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | read_merged_count | | | | busy_time | | |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | write_merged_count | | | | | | |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
- | busy_time | | | | | | |
- +--------------------+-------------+-------------+-------------+-------------+-------------+-------------+
-
- **read_count**: number of reads
- **write_count**: number of writes
- **read_bytes**: number of bytes read
- **write_bytes**: number of bytes written
- - **read_time**: time spent reading from disk (in milliseconds)
- - **write_time**: time spent writing to disk (in milliseconds)
+ - **read_time**: (all except NetBSD and OpenBSD) time spent reading from disk (in milliseconds)
+ - **write_time**: (all except NetBSD and OpenBSD) time spent writing to disk (in milliseconds)
- **busy_time**: (Linux, FreeBSD) time spent doing actual I/Os (in milliseconds)
- **read_merged_count** (Linux): number of merged reads (see `iostat doc <https://www.kernel.org/doc/Documentation/iostats.txt>`__)
- - **write_merged_count** (Linux): number of merged writes (see `iostat doc <https://www.kernel.org/doc/Documentation/iostats.txt>`__)
+ - **write_merged_count** (Linux): number of merged writes (see `iostats doc <https://www.kernel.org/doc/Documentation/iostats.txt>`__)
If *perdisk* is ``True`` return the same information for every physical disk
installed on the system as a dictionary with partition names as the keys and