mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
b0dfeb1911
* clean up intervalv2 functions * use roundInterval from grafana-plugin-sdk-go * use from grafana-plugin-sdk-go * have intervalv2 in publicdashboards and remove tsdb/intervalv2 * legacydata cleanup * remove unused variables * Update pkg/tsdb/legacydata/interval/interval.go Co-authored-by: Arati R. <33031346+suntala@users.noreply.github.com> --------- Co-authored-by: Arati R. <33031346+suntala@users.noreply.github.com>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package loki
|
|
|
|
import (
|
|
"math"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend/gtime"
|
|
)
|
|
|
|
// round the duration to the nearest millisecond larger-or-equal-to the duration
|
|
func ceilMs(duration time.Duration) time.Duration {
|
|
floatMs := float64(duration.Nanoseconds()) / 1000.0 / 1000.0
|
|
ceilMs := math.Ceil(floatMs)
|
|
return time.Duration(ceilMs) * time.Millisecond
|
|
}
|
|
|
|
func durationMax(d1 time.Duration, d2 time.Duration) time.Duration {
|
|
if d1.Nanoseconds() >= d2.Nanoseconds() {
|
|
return d1
|
|
} else {
|
|
return d2
|
|
}
|
|
}
|
|
|
|
func calculateStep(interval time.Duration, timeRange time.Duration, resolution int64, queryStep *string) (time.Duration, error) {
|
|
// If we don't have step from query we calculate it from interval, time range and resolution
|
|
if queryStep == nil || *queryStep == "" {
|
|
step := time.Duration(interval.Nanoseconds() * resolution)
|
|
safeStep := timeRange / 11000
|
|
chosenStep := durationMax(step, safeStep)
|
|
return ceilMs(chosenStep), nil
|
|
}
|
|
|
|
step, err := gtime.ParseIntervalStringToTimeDuration(*queryStep)
|
|
if err != nil {
|
|
return step, err
|
|
}
|
|
|
|
return time.Duration(step.Nanoseconds() * resolution), nil
|
|
}
|