grafana/pkg/tsdb/influxdb/models.go
2016-10-05 14:42:06 +02:00

23 lines
317 B
Go

package influxdb
type Query struct {
Measurement string
Policy string
ResultFormat string
Tags []*Tag
GroupBy []*QueryPart
Selects []*Select
}
type Tag struct {
Key string
Operator string
Value string
}
type Select []QueryPart
type InfluxDbSelect struct {
Type string
}