grafana/pkg/tsdb/influxdb/models.go

23 lines
317 B
Go
Raw Normal View History

package influxdb
2016-10-04 14:28:05 -05:00
2016-10-05 03:56:34 -05:00
type Query struct {
2016-10-04 14:28:05 -05:00
Measurement string
Policy string
ResultFormat string
2016-10-05 03:56:34 -05:00
Tags []*Tag
GroupBy []*QueryPart
Selects []*Select
2016-10-04 14:28:05 -05:00
}
type Tag struct {
Key string
Operator string
Value string
}
2016-10-05 03:56:34 -05:00
type Select []QueryPart
2016-10-04 14:28:05 -05:00
type InfluxDbSelect struct {
Type string
}