diff options
author | umohnani8 <umohnani@redhat.com> | 2018-01-23 16:50:20 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-25 03:23:10 +0000 |
commit | 12e3d9d8a26d2c33d587dba9b7ea5b0dcfd92eea (patch) | |
tree | 6e596e575eba2c990db4f920baf41ab1bd1210c7 /cmd/podman/stats.go | |
parent | 4c7bab9812b95fed8e6f8255b51b843b3e762782 (diff) | |
download | podman-12e3d9d8a26d2c33d587dba9b7ea5b0dcfd92eea.tar.gz podman-12e3d9d8a26d2c33d587dba9b7ea5b0dcfd92eea.tar.bz2 podman-12e3d9d8a26d2c33d587dba9b7ea5b0dcfd92eea.zip |
Fix podman stats based on QE feedback
QE found issues with formatting the go template and
the man page was lacking information.
Changed the format of the output to match latest docker.
Add shortID function that returns the truncated ID
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #258
Approved by: rhatdan
Diffstat (limited to 'cmd/podman/stats.go')
-rw-r--r-- | cmd/podman/stats.go | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/cmd/podman/stats.go b/cmd/podman/stats.go index 871eb9e2f..21cca1d83 100644 --- a/cmd/podman/stats.go +++ b/cmd/podman/stats.go @@ -15,14 +15,14 @@ import ( ) type statsOutputParams struct { - Container string `json:"name"` - ID string `json:"id"` - CPUPerc string `json:"cpu_percent"` - MemUsage string `json:"mem_usage"` - MemPerc string `json:"mem_percent"` - NetIO string `json:"netio"` - BlockIO string `json:"blocki"` - PIDS string `json:"pids"` + ID string `json:"id"` + Name string `json:"name"` + CPUPerc string `json:"cpu_percent"` + MemUsage string `json:"mem_usage"` + MemPerc string `json:"mem_percent"` + NetIO string `json:"netio"` + BlockIO string `json:"blocki"` + PIDS string `json:"pids"` } var ( @@ -37,7 +37,7 @@ var ( }, cli.StringFlag{ Name: "format", - Usage: "pretty-print container statistics using a Go template", + Usage: "pretty-print container statistics to JSON or using a Go template", }, cli.BoolFlag{ Name: "no-reset", @@ -184,7 +184,12 @@ func outputStats(stats []*libpod.ContainerStats, format string) error { } func genStatsFormat() (format string) { - return "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}\t{{.PIDS}}" + if format != "" { + // "\t" from the command line is not being recognized as a tab + // replacing the string "\t" to a tab character if the user passes in "\t" + return strings.Replace(format, `\t`, "\t", -1) + } + return "table {{.ID}}\t{{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}\t{{.PIDS}}" } // imagesToGeneric creates an empty array of interfaces for output @@ -248,13 +253,13 @@ func pidsToString(pid uint64) string { func getStatsOutputParams(stats *libpod.ContainerStats) statsOutputParams { return statsOutputParams{ - Container: stats.ContainerID[:12], - ID: stats.ContainerID, - CPUPerc: floatToPercentString(stats.CPU), - MemUsage: combineHumanValues(stats.MemUsage, stats.MemLimit), - MemPerc: floatToPercentString(stats.MemPerc), - NetIO: combineHumanValues(stats.NetInput, stats.NetOutput), - BlockIO: combineHumanValues(stats.BlockInput, stats.BlockOutput), - PIDS: pidsToString(stats.PIDs), + Name: stats.Name, + ID: shortID(stats.ContainerID), + CPUPerc: floatToPercentString(stats.CPU), + MemUsage: combineHumanValues(stats.MemUsage, stats.MemLimit), + MemPerc: floatToPercentString(stats.MemPerc), + NetIO: combineHumanValues(stats.NetInput, stats.NetOutput), + BlockIO: combineHumanValues(stats.BlockInput, stats.BlockOutput), + PIDS: pidsToString(stats.PIDs), } } |