2016-07-07 16:13:56 +00:00
|
|
|
package monitor
|
|
|
|
|
|
|
|
import "github.com/influxdata/influxdb/models"
|
|
|
|
|
2016-12-30 20:34:53 +00:00
|
|
|
// Reporter is an interface for gathering internal statistics.
|
2016-07-07 16:13:56 +00:00
|
|
|
type Reporter interface {
|
2016-12-30 20:34:53 +00:00
|
|
|
// Statistics returns the statistics for the reporter,
|
|
|
|
// with the given tags merged into the result.
|
2016-07-07 16:13:56 +00:00
|
|
|
Statistics(tags map[string]string) []models.Statistic
|
|
|
|
}
|