vsphere-influxdb-go/vendor/github.com/influxdata/influxdb/monitor/reporter.go

11 lines
315 B
Go
Raw Normal View History

2017-10-25 22:52:40 +02:00
package monitor
import "github.com/influxdata/influxdb/models"
// Reporter is an interface for gathering internal statistics.
type Reporter interface {
// Statistics returns the statistics for the reporter,
// with the given tags merged into the result.
Statistics(tags map[string]string) []models.Statistic
}