stats_windows.go 341 B

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