telegraf/plugins/inputs/zfs/zfs_other.go

19 lines
284 B
Go
Raw Normal View History

2016-06-01 17:58:54 +00:00
// +build !linux,!freebsd
2016-06-01 17:53:29 +00:00
package zfs
import (
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/plugins/inputs"
)
func (z *Zfs) Gather(acc telegraf.Accumulator) error {
return nil
}
func init() {
inputs.Add("zfs", func() telegraf.Input {
return &Zfs{}
})
}