1
0
mirror of https://github.com/Oxalide/vsphere-influxdb-go.git synced 2023-10-10 13:36:51 +02:00
vsphere-influxdb-go/vendor/github.com/influxdata/influxdb/monitor/reporter.go
2017-10-25 20:52:40 +00:00

11 lines
315 B
Go

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
}