telegraf/plugins/inputs/ethtool/ethtool.go

16 lines
243 B
Go
Raw Normal View History

//go:generate ../../../tools/readme_config_includer/generator
2019-11-09 03:55:37 +08:00
package ethtool
import (
_ "embed"
2019-11-09 03:55:37 +08:00
)
//go:embed sample.conf
var sampleConfig string
const pluginName = "ethtool"
2019-11-09 03:55:37 +08:00
func (*Ethtool) SampleConfig() string {
return sampleConfig
}