package daemon import ( "context" "encoding/json" "errors" "runtime" "time" cerrdefs "github.com/containerd/errdefs" "github.com/containerd/log" containertypes "github.com/moby/moby/api/types/container" "github.com/moby/moby/v2/daemon/container" "github.com/moby/moby/v2/daemon/server/backend" "github.com/moby/moby/v2/errdefs" ) // ContainerStats writes information about the container to the stream // given in the config object. func (daemon *Daemon) ContainerStats(ctx context.Context, prefixOrName string, config *backend.ContainerStatsConfig) error { ctr, err := daemon.GetContainer(prefixOrName) if err != nil { return err } if config.Stream && config.OneShot { return errdefs.InvalidParameter(errors.New("cannot have stream=true and one-shot=true")) } // If the container is either not running or restarting and requires no stream, return an empty stats. if !config.Stream && (!ctr.State.IsRunning() || ctr.State.IsRestarting()) { return json.NewEncoder(config.OutStream()).Encode(&containertypes.StatsResponse{ Name: ctr.Name, ID: ctr.ID, }) } // Get container stats directly if OneShot is set if config.OneShot { stats, err := daemon.GetContainerStats(ctr) if err != nil { return err } return json.NewEncoder(config.OutStream()).Encode(stats) } var preCPUStats containertypes.CPUStats var preRead time.Time getStatJSON := func(v any) *containertypes.StatsResponse { ss := v.(containertypes.StatsResponse) ss.Name = ctr.Name ss.ID = ctr.ID ss.PreCPUStats = preCPUStats ss.PreRead = preRead preCPUStats = ss.CPUStats preRead = ss.Read return &ss } updates := daemon.subscribeToContainerStats(ctr) defer daemon.unsubscribeToContainerStats(ctr, updates) noStreamFirstFrame := !config.OneShot enc := json.NewEncoder(config.OutStream()) for { select { case v, ok := <-updates: if !ok { return nil } statsJSON := getStatJSON(v) if !config.Stream && noStreamFirstFrame { // prime the cpu stats so they aren't 0 in the final output noStreamFirstFrame = false continue } if err := enc.Encode(statsJSON); err != nil { return err } if !config.Stream { return nil } case <-ctx.Done(): return nil } } } func (daemon *Daemon) subscribeToContainerStats(c *container.Container) chan any { return daemon.statsCollector.Collect(c) } func (daemon *Daemon) unsubscribeToContainerStats(c *container.Container, ch chan any) { daemon.statsCollector.Unsubscribe(c, ch) } // GetContainerStats collects all the stats published by a container func (daemon *Daemon) GetContainerStats(ctr *container.Container) (*containertypes.StatsResponse, error) { stats, err := daemon.stats(ctr) if err != nil { goto done } // Sample system CPU usage close to container usage to avoid // noise in metric calculations. // FIXME: move to containerd on Linux (not Windows) stats.CPUStats.SystemUsage, stats.CPUStats.OnlineCPUs, err = getSystemCPUUsage() if err != nil { goto done } // We already have the network stats on Windows directly from HCS. if !ctr.Config.NetworkDisabled && runtime.GOOS != "windows" { stats.Networks, err = daemon.getNetworkStats(ctr) } done: if err != nil { if cerrdefs.IsNotFound(err) || cerrdefs.IsConflict(err) { // return empty stats containing only name and ID if not running or not found return &containertypes.StatsResponse{ Name: ctr.Name, ID: ctr.ID, }, nil } log.G(context.TODO()).Errorf("collecting stats for container %s: %v", ctr.Name, err) return nil, err } return stats, nil }