summaryrefslogtreecommitdiff
path: root/docs/podman-stats.1.md
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2017-12-15 16:58:36 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2017-12-18 16:46:05 +0000
commit5770dc2640c216525ab84031e3712fcc46b3b087 (patch)
tree8a1c5c4e4a6ce6a35a3767247623a62bfd698f77 /docs/podman-stats.1.md
parentde3468e120d489d046c08dad72ba2262e222ccb1 (diff)
downloadpodman-5770dc2640c216525ab84031e3712fcc46b3b087.tar.gz
podman-5770dc2640c216525ab84031e3712fcc46b3b087.tar.bz2
podman-5770dc2640c216525ab84031e3712fcc46b3b087.zip
Rename all references to kpod to podman
The decision is in, kpod is going to be named podman. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #145 Approved by: umohnani8
Diffstat (limited to 'docs/podman-stats.1.md')
-rw-r--r--docs/podman-stats.1.md77
1 files changed, 77 insertions, 0 deletions
diff --git a/docs/podman-stats.1.md b/docs/podman-stats.1.md
new file mode 100644
index 000000000..80d061cb2
--- /dev/null
+++ b/docs/podman-stats.1.md
@@ -0,0 +1,77 @@
+% podman(1) podman-stats - Display a live stream of 1 or more containers' resource usage statistics
+% Ryan Cole
+# podman-stats "1" "July 2017" "podman"
+
+## NAME
+podman-stats - Display a live stream of 1 or more containers' resource usage statistics
+
+## SYNOPSIS
+**podman** **stats** [*options* [...]] [container]
+
+## DESCRIPTION
+Display a live stream of one or more containers' resource usage statistics
+
+## OPTIONS
+
+**--all, -a**
+
+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
+
+**--format="TEMPLATE"**
+
+Pretty-print images using a Go template
+
+
+## EXAMPLE
+
+```
+# podman 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
+
+#
+```
+
+```
+# podman 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
+
+#
+```
+```
+# podman 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
+podman(1)
+
+## HISTORY
+July 2017, Originally compiled by Ryan Cole <rycole@redhat.com>