From 630e7ba39473ea62a63c752d95dc46d835448336 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sun, 30 Jul 2023 06:26:58 -0400 Subject: [PATCH 1/2] Improve the description of fields in podman-stats man page Fixes: https://github.com/containers/podman/issues/15146 Signed-off-by: Daniel J Walsh --- docs/source/markdown/podman-stats.1.md.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/markdown/podman-stats.1.md.in b/docs/source/markdown/podman-stats.1.md.in index 710a191334..4a9ee9407b 100644 --- a/docs/source/markdown/podman-stats.1.md.in +++ b/docs/source/markdown/podman-stats.1.md.in @@ -34,19 +34,19 @@ Valid placeholders for the Go template are listed below: |---------------------|--------------------------------------------------| | .AvgCPU | Average CPU, full precision float | | .AVGCPU | Average CPU, formatted as a percent | -| .BlockInput | Block Input | -| .BlockIO | Block IO | -| .BlockOutput | Block Output | +| .BlockInput | Total data read from block device | +| .BlockIO | Total data read/total data written to block device| +| .BlockOutput | Total data written to block device | | .ContainerID | Container ID, full (untruncated) hash | | .ContainerStats ... | Nested structure, for experts only | | .CPU | Percent CPU, full precision float | | .CPUNano | CPU Usage, total, in nanoseconds | -| .CPUPerc | CPU percentage | +| .CPUPerc | Percentage of CPU Used | | .CPUSystemNano | CPU Usage, kernel, in nanoseconds | | .Duration | Same as CPUNano | | .ID | Container ID, truncated | | .MemLimit | Memory limit, in bytes | -| .MemPerc | Memory percentage | +| .MemPerc | Memory percentage used | | .MemUsage | Memory usage | | .MemUsageBytes | Memory usage (IEC) | | .Name | Container Name | From acbe7703f9a866875d8e0ca90d1c58ae3dac0d58 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 31 Jul 2023 09:31:33 -0400 Subject: [PATCH 2/2] Update docs/source/markdown/podman-stats.1.md.in Co-authored-by: Valentin Rothberg Signed-off-by: Daniel J Walsh --- docs/source/markdown/podman-stats.1.md.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/markdown/podman-stats.1.md.in b/docs/source/markdown/podman-stats.1.md.in index 4a9ee9407b..5bd470f7b7 100644 --- a/docs/source/markdown/podman-stats.1.md.in +++ b/docs/source/markdown/podman-stats.1.md.in @@ -41,7 +41,7 @@ Valid placeholders for the Go template are listed below: | .ContainerStats ... | Nested structure, for experts only | | .CPU | Percent CPU, full precision float | | .CPUNano | CPU Usage, total, in nanoseconds | -| .CPUPerc | Percentage of CPU Used | +| .CPUPerc | Percentage of CPU used | | .CPUSystemNano | CPU Usage, kernel, in nanoseconds | | .Duration | Same as CPUNano | | .ID | Container ID, truncated |