37 lines
742 B
Go
37 lines
742 B
Go
//go:generate ../../../tools/readme_config_includer/generator
|
|
//go:build !linux || !amd64
|
|
|
|
package intel_pmu
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/influxdata/telegraf"
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
|
)
|
|
|
|
//go:embed sample.conf
|
|
var sampleConfig string
|
|
|
|
type IntelPMU struct {
|
|
Log telegraf.Logger `toml:"-"`
|
|
}
|
|
|
|
func (*IntelPMU) SampleConfig() string { return sampleConfig }
|
|
|
|
func (i *IntelPMU) Init() error {
|
|
i.Log.Warn("Current platform is not supported")
|
|
return nil
|
|
}
|
|
|
|
func (*IntelPMU) Start(_ telegraf.Accumulator) error { return nil }
|
|
|
|
func (*IntelPMU) Gather(_ telegraf.Accumulator) error { return nil }
|
|
|
|
func (*IntelPMU) Stop() {}
|
|
|
|
func init() {
|
|
inputs.Add("intel_pmu", func() telegraf.Input {
|
|
return &IntelPMU{}
|
|
})
|
|
}
|