mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
* alerting: influxdb: refactor unit-tests * alerting: influxdb: converted code from timeseries-mode to dataframe-mode * influxdb: simplify code * influxdb: better function name * influxdb: alerting: more tests * influxdb: alerting: more tests * influxdb: refactor * influxdb: improved unit-test * influxdb: simplified code * influxdb: refactor reponse-parser code * influxdb: refactor unit tests * influxdb: alerting: use nicer names Co-authored-by: dsotirakis <sotirakis.dim@gmail.com>
50 lines
888 B
Go
50 lines
888 B
Go
package influxdb
|
|
|
|
import "time"
|
|
|
|
type Query struct {
|
|
Measurement string
|
|
Policy string
|
|
ResultFormat string
|
|
Tags []*Tag
|
|
GroupBy []*QueryPart
|
|
Selects []*Select
|
|
RawQuery string
|
|
UseRawQuery bool
|
|
Alias string
|
|
Interval time.Duration
|
|
Tz string
|
|
}
|
|
|
|
type Tag struct {
|
|
Key string
|
|
Operator string
|
|
Value string
|
|
Condition string
|
|
}
|
|
|
|
type Select []QueryPart
|
|
|
|
type Response struct {
|
|
Results []Result
|
|
Error string
|
|
}
|
|
|
|
type Result struct {
|
|
Series []Row
|
|
Messages []*Message
|
|
Error string
|
|
}
|
|
|
|
type Message struct {
|
|
Level string `json:"level,omitempty"`
|
|
Text string `json:"text,omitempty"`
|
|
}
|
|
|
|
type Row struct {
|
|
Name string `json:"name,omitempty"`
|
|
Tags map[string]string `json:"tags,omitempty"`
|
|
Columns []string `json:"columns,omitempty"`
|
|
Values [][]interface{} `json:"values,omitempty"`
|
|
}
|