mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #29702 from WeiZhang555/stats-all-format-name-panic
Send "Name" and "ID" when stating stopped containers
(cherry picked from commit 22472c8be5
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
b0e4cf1ad2
commit
ecfddcf227
3 changed files with 29 additions and 1 deletions
|
@ -33,7 +33,9 @@ func (daemon *Daemon) ContainerStats(ctx context.Context, prefixOrName string, c
|
|||
|
||||
// If the container is either not running or restarting and requires no stream, return an empty stats.
|
||||
if (!container.IsRunning() || container.IsRestarting()) && !config.Stream {
|
||||
return json.NewEncoder(config.OutStream).Encode(&types.Stats{})
|
||||
return json.NewEncoder(config.OutStream).Encode(&types.StatsJSON{
|
||||
Name: container.Name,
|
||||
ID: container.ID})
|
||||
}
|
||||
|
||||
outStream := config.OutStream
|
||||
|
|
|
@ -120,7 +120,14 @@ func (s *statsCollector) run() {
|
|||
if err != nil {
|
||||
if _, ok := err.(errNotRunning); !ok {
|
||||
logrus.Errorf("collecting stats for %s: %v", pair.container.ID, err)
|
||||
continue
|
||||
}
|
||||
|
||||
// publish empty stats containing only name and ID if not running
|
||||
pair.publisher.Publish(types.StatsJSON{
|
||||
Name: pair.container.Name,
|
||||
ID: pair.container.ID,
|
||||
})
|
||||
continue
|
||||
}
|
||||
// FIXME: move to containerd on Linux (not Windows)
|
||||
|
|
|
@ -157,3 +157,22 @@ func (s *DockerSuite) TestStatsAllNewContainersAdded(c *check.C) {
|
|||
// ignore, done
|
||||
}
|
||||
}
|
||||
|
||||
func (s *DockerSuite) TestStatsFormatAll(c *check.C) {
|
||||
// Windows does not support stats
|
||||
testRequires(c, DaemonIsLinux)
|
||||
|
||||
dockerCmd(c, "run", "-d", "--name=RunningOne", "busybox", "top")
|
||||
c.Assert(waitRun("RunningOne"), check.IsNil)
|
||||
dockerCmd(c, "run", "-d", "--name=ExitedOne", "busybox", "top")
|
||||
dockerCmd(c, "stop", "ExitedOne")
|
||||
c.Assert(waitExited("ExitedOne", 5*time.Second), check.IsNil)
|
||||
|
||||
out, _ := dockerCmd(c, "stats", "--no-stream", "--format", "{{.Name}}")
|
||||
c.Assert(out, checker.Contains, "RunningOne")
|
||||
c.Assert(out, checker.Not(checker.Contains), "ExitedOne")
|
||||
|
||||
out, _ = dockerCmd(c, "stats", "--all", "--no-stream", "--format", "{{.Name}}")
|
||||
c.Assert(out, checker.Contains, "RunningOne")
|
||||
c.Assert(out, checker.Contains, "ExitedOne")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue