mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
23 lines
317 B
Go
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
|
|
}
|