telegraf/plugins/inputs/dmcache/dmcache_notlinux.go

16 lines
219 B
Go
Raw Normal View History

//go:build !linux
2017-04-08 06:39:43 +08:00
package dmcache
import (
"github.com/influxdata/telegraf"
)
func (*DMCache) Gather(_ telegraf.Accumulator) error {
2017-04-08 06:39:43 +08:00
return nil
}
func dmSetupStatus() ([]string, error) {
return []string{}, nil
}