1
0
Fork 0
telegraf/plugins/inputs/ethtool/ethtool.go

16 lines
243 B
Go
Raw Normal View History

//go:generate ../../../tools/readme_config_includer/generator
package ethtool
import (
_ "embed"
)
//go:embed sample.conf
var sampleConfig string
const pluginName = "ethtool"
func (*Ethtool) SampleConfig() string {
return sampleConfig
}