grafana/pkg/tsdb/influxdb/models/models.go
ismail simsek 63abe25b74
InfluxDB: Fix table parsing with backend mode (#76899)
* Add resultFormat to query model

* don't add row name if the result format is table

* No need special formatting since we use unified dataframes

* betterer

* specify visualization type in response

* Unit tests

* fix unit tests
2023-10-23 19:21:30 +02:00

54 lines
970 B
Go

package models
import "time"
type Query struct {
Measurement string
Policy string
Tags []*Tag
GroupBy []*QueryPart
Selects []*Select
RawQuery string
UseRawQuery bool
Alias string
Interval time.Duration
Tz string
Limit string
Slimit string
OrderByTime string
RefID string
ResultFormat 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 [][]any `json:"values,omitempty"`
}