38 lines
1018 B
Go
38 lines
1018 B
Go
package telegraf
|
|
|
|
type Output interface {
|
|
// Connect to the Output
|
|
Connect() error
|
|
// Close any connections to the Output
|
|
Close() error
|
|
// Description returns a one-sentence description on the Output
|
|
Description() string
|
|
// SampleConfig returns the default configuration of the Output
|
|
SampleConfig() string
|
|
// Write takes in group of points to be written to the Output
|
|
Write(metrics []Metric) error
|
|
}
|
|
|
|
type AggregatingOutput interface {
|
|
Add(in Metric)
|
|
Push() []Metric
|
|
Reset()
|
|
}
|
|
|
|
type ServiceOutput interface {
|
|
// Connect to the Output
|
|
Connect() error
|
|
// Close any connections to the Output
|
|
Close() error
|
|
// Description returns a one-sentence description on the Output
|
|
Description() string
|
|
// SampleConfig returns the default configuration of the Output
|
|
SampleConfig() string
|
|
// Write takes in group of points to be written to the Output
|
|
Write(metrics []Metric) error
|
|
// Start the "service" that will provide an Output
|
|
Start() error
|
|
// Stop the "service" that will provide an Output
|
|
Stop()
|
|
}
|