1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Update stats cli reference documentation

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2016-11-16 15:26:29 +01:00
parent 297f2fd445
commit 947464e2f1
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
2 changed files with 9 additions and 4 deletions

View file

@ -22,6 +22,7 @@ Display a live stream of container(s) resource usage statistics
Options: Options:
-a, --all Show all containers (default shows just running) -a, --all Show all containers (default shows just running)
--format string Pretty-print images using a Go template
--help Print usage --help Print usage
--no-stream Disable streaming stats and only pull the first result --no-stream Disable streaming stats and only pull the first result
``` ```
@ -77,7 +78,9 @@ Valid placeholders for the Go template are listed below:
Placeholder | Description Placeholder | Description
------------ | -------------------------------------------- ------------ | --------------------------------------------
`.Container` | Container name or ID `.Container` | Container name or ID (user input)
`.Name` | Container name
`.ID` | Container ID
`.CPUPerc` | CPU percentage `.CPUPerc` | CPU percentage
`.MemUsage` | Memory usage `.MemUsage` | Memory usage
`.NetIO` | Network IO `.NetIO` | Network IO

View file

@ -30,6 +30,8 @@ Display a live stream of one or more containers' resource usage statistics
Pretty-print containers statistics using a Go template. Pretty-print containers statistics using a Go template.
Valid placeholders: Valid placeholders:
.Container - Container name or ID. .Container - Container name or ID.
.Name - Container name.
.ID - Container ID.
.CPUPerc - CPU percentage. .CPUPerc - CPU percentage.
.MemUsage - Memory usage. .MemUsage - Memory usage.
.NetIO - Network IO. .NetIO - Network IO.