telegraf/plugins/inputs/dmcache/dmcache_notlinux.go

16 lines
223 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 (c *DMCache) Gather(acc telegraf.Accumulator) error {
return nil
}
func dmSetupStatus() ([]string, error) {
return []string{}, nil
}