github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/daemon/stats_windows.go (about)

     1  package daemon // import "github.com/demonoid81/moby/daemon"
     2  
     3  import (
     4  	"github.com/demonoid81/moby/api/types"
     5  	"github.com/demonoid81/moby/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  }