8 lines
148 B
Go
8 lines
148 B
Go
|
package monitor
|
||
|
|
||
|
import "github.com/influxdata/influxdb/models"
|
||
|
|
||
|
type Reporter interface {
|
||
|
Statistics(tags map[string]string) []models.Statistic
|
||
|
}
|