grafana/pkg/tsdb/influxdb/flux/query_models.go
Serge Zaitsev f8ec35e643
Chore: Fix goimports grouping (#62427)
* fix goimports order

* fix goimports order
2023-01-30 09:38:51 +01:00

59 lines
1.6 KiB
Go

package flux
import (
"encoding/json"
"fmt"
"time"
"github.com/grafana/grafana-plugin-sdk-go/backend"
"github.com/grafana/grafana/pkg/tsdb/influxdb/models"
)
// queryOptions represents datasource configuration options
type queryOptions struct {
Bucket string `json:"bucket"`
DefaultBucket string `json:"defaultBucket"`
Organization string `json:"organization"`
}
// queryModel represents a query.
type queryModel struct {
RawQuery string `json:"query"`
Options queryOptions `json:"options"`
// Not from JSON
TimeRange backend.TimeRange `json:"-"`
MaxDataPoints int64 `json:"-"`
Interval time.Duration `json:"-"`
}
func getQueryModel(query backend.DataQuery, timeRange backend.TimeRange,
dsInfo *models.DatasourceInfo) (*queryModel, error) {
model := &queryModel{}
if err := json.Unmarshal(query.JSON, model); err != nil {
return nil, fmt.Errorf("error reading query: %w", err)
}
if model.Options.DefaultBucket == "" {
model.Options.DefaultBucket = dsInfo.DefaultBucket
}
if model.Options.Bucket == "" {
model.Options.Bucket = model.Options.DefaultBucket
}
if model.Options.Organization == "" {
model.Options.Organization = dsInfo.Organization
}
// Copy directly from the well typed query
model.TimeRange = timeRange
model.MaxDataPoints = query.MaxDataPoints
if model.MaxDataPoints == 0 {
model.MaxDataPoints = 10000 // 10k/series should be a reasonable place to abort!
}
model.Interval = query.Interval
if model.Interval.Milliseconds() == 0 {
model.Interval = time.Millisecond // 1ms
}
return model, nil
}