github.com/opsramp/moby@v1.13.1/daemon/stats_windows.go (about)

     1  package 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  }