mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add select component for choosing step option * Add onStepChange * Add functionality for max step * Rename minInterval to stepInterval to describe min, max and exact step interval * Change select option from standard to exact * Add new type StepType for better type safety * Add tests for adjustInterval * Add functionality and tests for exact step option * Prometheus: Spell out min and max in select component * Prometheus: Change width of step select component and add placeholder * Prometheus: Adjust for the factor in exact step * Prometheus: Update tooltip of step lable to include max and exact options and add padding to select component to give it some breathing room from other components * Update snapshot for step tooltip * Prometheus: make tooltip more informative * Prometheus: add tooltip to interval input element * Prometheus: extract default step option * Prometheus: update snapshot for PromQueryEditor * Prometheus: change step labels to uppercase * Prometheus: define a default step option * Prometheus: use default step option in both ui component and logic * Prometheus: update snapshot for PromQueryEditor * Prometheus: refactor datasource.ts for better readability * Prometheus: change tool tip for step * Prometheus: update snapshots * Prometheus: add correct styling * Prometheus: update snapshots * Prometheus change variable name to something less superfluous * Prometheus: refactor * Prometheus: add new test for adjustInterval * Docs: Update docummentation on the step parameter for prometheus * Prometheus: make step input field smaller and change placeholder text to 15s * Prometheus: update snapshots * Prometheus: Make stepMode uniform in all places in the code * Adjust step based on stepMode * Adjust comment * Check if we have queryInterval * Refactor, add safe interval * Fix merge resolutions * Fix tests and add tests * Update snapshot * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/datasources/prometheus.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Implement calculation with intervalMode in calculator.go * Update tests, add calculate safe interval method * Replace panic with error * Update pkg/tsdb/interval/interval_test.go Co-authored-by: idafurjes <36131195+idafurjes@users.noreply.github.com> * Update pkg/tsdb/calculator_test.go Co-authored-by: idafurjes <36131195+idafurjes@users.noreply.github.com> * Impotrt require * Remove lint errors Co-authored-by: Olof Bourghardt <ob655088@gmail.com> Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> Co-authored-by: idafurjes <36131195+idafurjes@users.noreply.github.com>
171 lines
3.9 KiB
Go
171 lines
3.9 KiB
Go
package influxdb
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
)
|
|
|
|
var (
|
|
regexpOperatorPattern = regexp.MustCompile(`^\/.*\/$`)
|
|
regexpMeasurementPattern = regexp.MustCompile(`^\/.*\/$`)
|
|
)
|
|
|
|
func (query *Query) Build(queryContext *backend.QueryDataRequest) (string, error) {
|
|
var res string
|
|
if query.UseRawQuery && query.RawQuery != "" {
|
|
res = query.RawQuery
|
|
} else {
|
|
res = query.renderSelectors(queryContext)
|
|
res += query.renderMeasurement()
|
|
res += query.renderWhereClause()
|
|
res += query.renderTimeFilter(queryContext)
|
|
res += query.renderGroupBy(queryContext)
|
|
res += query.renderTz()
|
|
}
|
|
|
|
calculator := tsdb.NewCalculator(tsdb.CalculatorOptions{})
|
|
i, err := calculator.Calculate(queryContext.Queries[0].TimeRange, query.Interval, tsdb.Min)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
res = strings.ReplaceAll(res, "$timeFilter", query.renderTimeFilter(queryContext))
|
|
res = strings.ReplaceAll(res, "$interval", i.Text)
|
|
res = strings.ReplaceAll(res, "$__interval_ms", strconv.FormatInt(i.Milliseconds(), 10))
|
|
res = strings.ReplaceAll(res, "$__interval", i.Text)
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (query *Query) renderTags() []string {
|
|
var res []string
|
|
for i, tag := range query.Tags {
|
|
str := ""
|
|
|
|
if i > 0 {
|
|
if tag.Condition == "" {
|
|
str += "AND"
|
|
} else {
|
|
str += tag.Condition
|
|
}
|
|
str += " "
|
|
}
|
|
|
|
// If the operator is missing we fall back to sensible defaults
|
|
if tag.Operator == "" {
|
|
if regexpOperatorPattern.Match([]byte(tag.Value)) {
|
|
tag.Operator = "=~"
|
|
} else {
|
|
tag.Operator = "="
|
|
}
|
|
}
|
|
|
|
// quote value unless regex or number
|
|
var textValue string
|
|
switch tag.Operator {
|
|
case "=~", "!~":
|
|
textValue = tag.Value
|
|
case "<", ">":
|
|
textValue = tag.Value
|
|
default:
|
|
textValue = fmt.Sprintf("'%s'", strings.ReplaceAll(tag.Value, `\`, `\\`))
|
|
}
|
|
|
|
res = append(res, fmt.Sprintf(`%s"%s" %s %s`, str, tag.Key, tag.Operator, textValue))
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
func (query *Query) renderTimeFilter(queryContext *backend.QueryDataRequest) string {
|
|
from, to := epochMStoInfluxTime(&queryContext.Queries[0].TimeRange)
|
|
return fmt.Sprintf("time > %s and time < %s", from, to)
|
|
}
|
|
|
|
func (query *Query) renderSelectors(queryContext *backend.QueryDataRequest) string {
|
|
res := "SELECT "
|
|
|
|
var selectors []string
|
|
for _, sel := range query.Selects {
|
|
stk := ""
|
|
for _, s := range *sel {
|
|
stk = s.Render(query, queryContext, stk)
|
|
}
|
|
selectors = append(selectors, stk)
|
|
}
|
|
|
|
return res + strings.Join(selectors, ", ")
|
|
}
|
|
|
|
func (query *Query) renderMeasurement() string {
|
|
var policy string
|
|
if query.Policy == "" || query.Policy == "default" {
|
|
policy = ""
|
|
} else {
|
|
policy = `"` + query.Policy + `".`
|
|
}
|
|
|
|
measurement := query.Measurement
|
|
|
|
if !regexpMeasurementPattern.Match([]byte(measurement)) {
|
|
measurement = fmt.Sprintf(`"%s"`, measurement)
|
|
}
|
|
|
|
return fmt.Sprintf(` FROM %s%s`, policy, measurement)
|
|
}
|
|
|
|
func (query *Query) renderWhereClause() string {
|
|
res := " WHERE "
|
|
conditions := query.renderTags()
|
|
if len(conditions) > 0 {
|
|
if len(conditions) > 1 {
|
|
res += "(" + strings.Join(conditions, " ") + ")"
|
|
} else {
|
|
res += conditions[0]
|
|
}
|
|
res += " AND "
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
func (query *Query) renderGroupBy(queryContext *backend.QueryDataRequest) string {
|
|
groupBy := ""
|
|
for i, group := range query.GroupBy {
|
|
if i == 0 {
|
|
groupBy += " GROUP BY"
|
|
}
|
|
|
|
if i > 0 && group.Type != "fill" {
|
|
groupBy += ", " // fill is so very special. fill is a creep, fill is a weirdo
|
|
} else {
|
|
groupBy += " "
|
|
}
|
|
|
|
groupBy += group.Render(query, queryContext, "")
|
|
}
|
|
|
|
return groupBy
|
|
}
|
|
|
|
func (query *Query) renderTz() string {
|
|
tz := query.Tz
|
|
if tz == "" {
|
|
return ""
|
|
}
|
|
return fmt.Sprintf(" tz('%s')", tz)
|
|
}
|
|
|
|
func epochMStoInfluxTime(tr *backend.TimeRange) (string, string) {
|
|
from := tr.From.UnixNano() / int64(time.Millisecond)
|
|
to := tr.To.UnixNano() / int64(time.Millisecond)
|
|
|
|
return fmt.Sprintf("%dms", from), fmt.Sprintf("%dms", to)
|
|
}
|