21 lines
452 B
Go
21 lines
452 B
Go
package telegraf
|
|
|
|
type Input interface {
|
|
PluginDescriber
|
|
|
|
// Gather takes in an accumulator and adds the metrics that the Input
|
|
// gathers. This is called every "interval"
|
|
Gather(Accumulator) error
|
|
}
|
|
|
|
type ServiceInput interface {
|
|
Input
|
|
|
|
// Start the ServiceInput. The Accumulator may be retained and used until
|
|
// Stop returns.
|
|
Start(Accumulator) error
|
|
|
|
// Stop stops the services and closes any necessary channels and connections
|
|
Stop()
|
|
}
|