1
0
Fork 0
telegraf/plugins/inputs/dmcache/dmcache_notlinux.go

16 lines
226 B
Go
Raw Permalink Normal View History

//go:build !linux
package dmcache
import (
"github.com/influxdata/telegraf"
)
func (*DMCache) Gather(_ telegraf.Accumulator) error {
return nil
}
func dmSetupStatus() ([]string, error) {
return make([]string, 0), nil
}