telegraf/plugins/inputs/processes/processes.go

12 lines
236 B
Go
Raw Normal View History

package processes
import _ "embed"
2022-05-27 21:13:47 +08:00
// DO NOT REMOVE THE NEXT TWO LINES! This is required to embed the sampleConfig data.
//go:embed sample.conf
var sampleConfig string
func (*Processes) SampleConfig() string {
return sampleConfig
}