influxdb/telegraf/plugins/inputs/system.go

27 lines
493 B
Go
Raw Normal View History

2018-10-05 21:43:01 +00:00
package inputs
2018-10-16 00:38:36 +00:00
import (
"fmt"
)
2018-10-05 21:43:01 +00:00
// SystemStats is based on telegraf SystemStats.
2018-10-16 00:38:36 +00:00
type SystemStats struct {
baseInput
}
// PluginName is based on telegraf plugin name.
func (s *SystemStats) PluginName() string {
return "system"
}
2018-10-05 21:43:01 +00:00
// TOML encodes to toml string
func (s *SystemStats) TOML() string {
2018-10-16 00:38:36 +00:00
return fmt.Sprintf(`[[inputs.%s]]
`, s.PluginName())
2018-10-05 21:43:01 +00:00
}
2018-10-17 19:51:35 +00:00
// UnmarshalTOML decodes the parsed data to the object
func (s *SystemStats) UnmarshalTOML(data interface{}) error {
return nil
}