diff options
author | baude <bbaude@redhat.com> | 2017-12-04 15:06:06 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-13 21:15:09 +0000 |
commit | 9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538 (patch) | |
tree | 9736c47af7246c93e2e2b6d6d246653ca57cc316 /docs | |
parent | 61f606e192ad67b4819a909a6f1b18c41e33db2d (diff) | |
download | podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.tar.gz podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.tar.bz2 podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.zip |
kpod stats
Move kpod stats to the libpod backend.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #113
Approved by: baude
Diffstat (limited to 'docs')
-rw-r--r-- | docs/kpod-stats.1.md | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/docs/kpod-stats.1.md b/docs/kpod-stats.1.md index 1c1c0b35d..2b73616a0 100644 --- a/docs/kpod-stats.1.md +++ b/docs/kpod-stats.1.md @@ -17,6 +17,10 @@ Display a live stream of one or more containers' resource usage statistics Show all containers. Only running containers are shown by default +**--no-reset** + +Do not clear the terminal/screen in between reporting intervals + **--no-stream** Disable streaming stats and only pull the first result, default setting is false @@ -28,7 +32,43 @@ Pretty-print images using a Go template ## EXAMPLE -TODO +``` +# kpod stats -a --no-stream + +CONTAINER CPU % MEM USAGE / LIMIT MEM % NET IO BLOCK IO PIDS +132ade621b5d 0.00% 1.618MB / 33.08GB 0.00% 0B / 0B 0B / 0B 0 +940e00a40a77 0.00% 1.544MB / 33.08GB 0.00% 0B / 0B 0B / 0B 0 +72a1dfb44ca7 0.00% 1.528MB / 33.08GB 0.00% 0B / 0B 0B / 0B 0 +f5a62a71b07b 0.00% 5.669MB / 33.08GB 0.02% 0B / 0B 0B / 0B 3 +31eab2cf93f4 0.00% 16.42MB / 33.08GB 0.05% 0B / 0B 22.43MB / 0B 0 + +# +``` + +``` +# kpod stats --no-stream 31eab2cf93f4 +CONTAINER CPU % MEM USAGE / LIMIT MEM % NET IO BLOCK IO PIDS +31eab2cf93f4 0.00% 16.42MB / 33.08GB 0.05% 0B / 0B 22.43MB / 0B 0 + +# +``` +``` +# kpod stats --no-stream --format=json 31eab2cf93f4 +[ + { + "name": "31eab2cf93f4", + "id": "31eab2cf93f413af64a3f13d8d78393238658465d75e527333a8577f251162ec", + "cpu_percent": "0.00%", + "mem_usage": "16.42MB / 33.08GB", + "mem_percent": "0.05%", + "netio": "0B / 0B", + "blocki": "22.43MB / 0B", + "pids": 0 + } +] +# +``` + ## SEE ALSO kpod(1) |