26 lines
568 B
Go
26 lines
568 B
Go
|
//go:generate ../../../tools/readme_config_includer/generator
|
||
|
package zfs
|
||
|
|
||
|
import (
|
||
|
_ "embed"
|
||
|
|
||
|
"github.com/influxdata/telegraf"
|
||
|
)
|
||
|
|
||
|
//go:embed sample.conf
|
||
|
var sampleConfig string
|
||
|
|
||
|
type Zfs struct {
|
||
|
KstatPath string `toml:"kstatPath"`
|
||
|
KstatMetrics []string `toml:"kstatMetrics"`
|
||
|
PoolMetrics bool `toml:"poolMetrics"`
|
||
|
DatasetMetrics bool `toml:"datasetMetrics"`
|
||
|
Log telegraf.Logger `toml:"-"`
|
||
|
|
||
|
helper //nolint:unused // for OS-specific usage
|
||
|
}
|
||
|
|
||
|
func (*Zfs) SampleConfig() string {
|
||
|
return sampleConfig
|
||
|
}
|