diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-11 16:02:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-11 16:02:53 +0100 |
commit | 8440b0734cac68ddd13c0c9c7bd5d07394da38fd (patch) | |
tree | 6c4441ec9b900c9a70f6242acf7bde33edf69ff4 /docs | |
parent | acf2e913730a27fcdc3fcd7c160aa19e071dde36 (diff) | |
parent | 4994fecd4604e17844d9e91fa710407701d6d85a (diff) | |
download | podman-8440b0734cac68ddd13c0c9c7bd5d07394da38fd.tar.gz podman-8440b0734cac68ddd13c0c9c7bd5d07394da38fd.tar.bz2 podman-8440b0734cac68ddd13c0c9c7bd5d07394da38fd.zip |
Merge pull request #2306 from baude/podstatsgotemplate
Podman pod stats -- fix GO template output
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-stats.1.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/podman-stats.1.md b/docs/podman-stats.1.md index 8fc765326..d0b56b2e6 100644 --- a/docs/podman-stats.1.md +++ b/docs/podman-stats.1.md @@ -36,16 +36,17 @@ Valid placeholders for the Go template are listed below: | **Placeholder** | **Description** | | --------------- | --------------- | -| .ID | Container ID | +| .Pod | Pod ID | +| .CID | Container ID | | .Name | Container Name | -| .CPUPerc | CPU percentage | +| .CPU | CPU percentage | | .MemUsage | Memory usage | -| .MemPerc | Memory percentage | +| .Mem | Memory percentage | | .NetIO | Network IO | | .BlockIO | Block IO | | .PIDS | Number of PIDs | - +When using a GO template, you may preceed the format with `table` to print headers. ## EXAMPLE ``` |