mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
24 lines
338 B
Go
24 lines
338 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
|
|
Condition string
|
|
}
|
|
|
|
type Select []QueryPart
|
|
|
|
type InfluxDbSelect struct {
|
|
Type string
|
|
}
|