github.com/moby/docker@v26.1.3+incompatible/daemon/metrics_unsupported.go (about) 1 //go:build windows 2 3 package daemon // import "github.com/docker/docker/daemon" 4 5 import ( 6 "github.com/docker/docker/daemon/config" 7 "github.com/docker/docker/pkg/plugingetter" 8 ) 9 10 func registerMetricsPluginCallback(getter plugingetter.PluginGetter, sockPath string) { 11 } 12 13 func (daemon *Daemon) listenMetricsSock(*config.Config) (string, error) { 14 return "", nil 15 }