2016-04-04 23:43:53 +00:00
|
|
|
// +build !linux
|
|
|
|
|
2018-07-11 23:43:49 +00:00
|
|
|
package kernel
|
2016-04-04 23:43:53 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Kernel struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Kernel) Description() string {
|
|
|
|
return "Get kernel statistics from /proc/stat"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Kernel) SampleConfig() string { return "" }
|
|
|
|
|
|
|
|
func (k *Kernel) Gather(acc telegraf.Accumulator) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
inputs.Add("kernel", func() telegraf.Input {
|
|
|
|
return &Kernel{}
|
|
|
|
})
|
|
|
|
}
|