31 lines
556 B
Go
31 lines
556 B
Go
//go:generate ../../../tools/readme_config_includer/generator
|
|
package dmcache
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/influxdata/telegraf"
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
|
)
|
|
|
|
//go:embed sample.conf
|
|
var sampleConfig string
|
|
|
|
type DMCache struct {
|
|
PerDevice bool `toml:"per_device"`
|
|
|
|
getCurrentStatus func() ([]string, error)
|
|
}
|
|
|
|
func (*DMCache) SampleConfig() string {
|
|
return sampleConfig
|
|
}
|
|
|
|
func init() {
|
|
inputs.Add("dmcache", func() telegraf.Input {
|
|
return &DMCache{
|
|
PerDevice: true,
|
|
getCurrentStatus: dmSetupStatus,
|
|
}
|
|
})
|
|
}
|