Add dmcache input plugin (#1667)

This commit is contained in:
Vladimir S
2017-04-08 01:39:43 +03:00
committed by Daniel Nelson
parent 223fce4770
commit a92ec65549
7 changed files with 456 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// +build !linux
package dmcache
import (
"github.com/influxdata/telegraf"
)
func (c *DMCache) Gather(acc telegraf.Accumulator) error {
return nil
}
func dmSetupStatus() ([]string, error) {
return []string{}, nil
}