From c6636d4d658065f2ce72902271de58728debad99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomas=20B=C3=A4ckman?= <11527327+larstomas@users.noreply.github.com> Date: Sun, 23 May 2021 05:21:38 +0200 Subject: [PATCH] Change IO order in description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the order of received/written and sent/read in NET I/O and BLOCK I/O description reflect the order in I/O (Input/Output). From example above: CONTAINER NAME: awesome_brattain BLOCK I/O: 147kB / 0B awesome_brattain has written 147kB and read 0B Signed-off-by: Tomas Bäckman --- docs/reference/commandline/stats.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/commandline/stats.md b/docs/reference/commandline/stats.md index 466b7ff120..b4fe62d0b6 100644 --- a/docs/reference/commandline/stats.md +++ b/docs/reference/commandline/stats.md @@ -71,8 +71,8 @@ following columns are shown. | `CONTAINER ID` and `Name` | the ID and name of the container | | `CPU %` and `MEM %` | the percentage of the host's CPU and memory the container is using | | `MEM USAGE / LIMIT` | the total memory the container is using, and the total amount of memory it is allowed to use | -| `NET I/O` | The amount of data the container has sent and received over its network interface | -| `BLOCK I/O` | The amount of data the container has read to and written from block devices on the host | +| `NET I/O` | The amount of data the container has received and sent over its network interface | +| `BLOCK I/O` | The amount of data the container has written to and read from block devices on the host | | `PIDs` | the number of processes or threads the container has created | Running `docker stats` on multiple containers by name and id against a Linux daemon.