summaryrefslogtreecommitdiff
path: root/libpod/stats.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-06-14 13:12:17 +0000
committerGitHub <noreply@github.com>2022-06-14 13:12:17 +0000
commit78ecdad5f8f16dbb6146f2741a3d7ead1ce837bc (patch)
treec6214d1b51693315139277932ee145a51b13a183 /libpod/stats.go
parent9fac1b335f681400a029e9d8014f45fa5634ec40 (diff)
parent608ad7d1139d80093d1ddd933027d31af7fdee83 (diff)
downloadpodman-78ecdad5f8f16dbb6146f2741a3d7ead1ce837bc.tar.gz
podman-78ecdad5f8f16dbb6146f2741a3d7ead1ce837bc.tar.bz2
podman-78ecdad5f8f16dbb6146f2741a3d7ead1ce837bc.zip
Merge pull request #14580 from jakecorrenti/stats-on-non-running-container
Non-running containers now report statistics via the `podman stats`
Diffstat (limited to 'libpod/stats.go')
-rw-r--r--libpod/stats.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/stats.go b/libpod/stats.go
index 25baa378d..d2ffc3b32 100644
--- a/libpod/stats.go
+++ b/libpod/stats.go
@@ -34,8 +34,9 @@ func (c *Container) GetContainerStats(previousStats *define.ContainerStats) (*de
}
}
+ // returns stats with the fields' default values respective of their type
if c.state.State != define.ContainerStateRunning && c.state.State != define.ContainerStatePaused {
- return stats, define.ErrCtrStateInvalid
+ return stats, nil
}
if previousStats == nil {