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 /libpod/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 'libpod/stats.go')
-rw-r--r-- | libpod/stats.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/stats.go b/libpod/stats.go index e87654277..47fb16194 100644 --- a/libpod/stats.go +++ b/libpod/stats.go @@ -13,6 +13,7 @@ import ( // ContainerStats contains the statistics information for a running container type ContainerStats struct { ContainerID string + Name string CPU float64 CPUNano uint64 SystemNano uint64 @@ -30,6 +31,7 @@ type ContainerStats struct { func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) { stats := new(ContainerStats) stats.ContainerID = c.ID() + stats.Name = c.Name() c.lock.Lock() defer c.lock.Unlock() if err := c.syncContainer(); err != nil { |