github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/daemon/stats_windows.go (about) 1 package daemon // import "github.com/docker/docker/daemon" 2 3 import ( 4 "github.com/docker/docker/api/types" 5 "github.com/docker/docker/container" 6 ) 7 8 // Windows network stats are obtained directly through HCS, hence this is a no-op. 9 func (daemon *Daemon) getNetworkStats(c *container.Container) (map[string]types.NetworkStats, error) { 10 return make(map[string]types.NetworkStats), nil 11 }