mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1420 lines
43 KiB
1420 lines
43 KiB
// Copyright 2015 The Prometheus Authors |
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
// you may not use this file except in compliance with the License. |
|
// You may obtain a copy of the License at |
|
// |
|
// http://www.apache.org/licenses/LICENSE-2.0 |
|
// |
|
// Unless required by applicable law or agreed to in writing, software |
|
// distributed under the License is distributed on an "AS IS" BASIS, |
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
// See the License for the specific language governing permissions and |
|
// limitations under the License. |
|
|
|
package promql |
|
|
|
import ( |
|
"fmt" |
|
"math" |
|
"sort" |
|
"strconv" |
|
"strings" |
|
"time" |
|
|
|
"github.com/grafana/regexp" |
|
"github.com/prometheus/common/model" |
|
|
|
"github.com/prometheus/prometheus/model/histogram" |
|
"github.com/prometheus/prometheus/model/labels" |
|
"github.com/prometheus/prometheus/promql/parser" |
|
) |
|
|
|
// FunctionCall is the type of a PromQL function implementation |
|
// |
|
// vals is a list of the evaluated arguments for the function call. |
|
// |
|
// For range vectors it will be a Matrix with one series, instant vectors a |
|
// Vector, scalars a Vector with one series whose value is the scalar |
|
// value,and nil for strings. |
|
// |
|
// args are the original arguments to the function, where you can access |
|
// matrixSelectors, vectorSelectors, and StringLiterals. |
|
// |
|
// enh.Out is a pre-allocated empty vector that you may use to accumulate |
|
// output before returning it. The vectors in vals should not be returned.a |
|
// |
|
// Range vector functions need only return a vector with the right value, |
|
// the metric and timestamp are not needed. |
|
// |
|
// Instant vector functions need only return a vector with the right values and |
|
// metrics, the timestamp are not needed. |
|
// |
|
// Scalar results should be returned as the value of a sample in a Vector. |
|
type FunctionCall func(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector |
|
|
|
// === time() float64 === |
|
func funcTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return Vector{Sample{Point: Point{ |
|
V: float64(enh.Ts) / 1000, |
|
}}} |
|
} |
|
|
|
// extrapolatedRate is a utility function for rate/increase/delta. |
|
// It calculates the rate (allowing for counter resets if isCounter is true), |
|
// extrapolates if the first/last sample is close to the boundary, and returns |
|
// the result as either per-second (if isRate is true) or overall. |
|
func extrapolatedRate(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper, isCounter, isRate bool) Vector { |
|
ms := args[0].(*parser.MatrixSelector) |
|
vs := ms.VectorSelector.(*parser.VectorSelector) |
|
var ( |
|
samples = vals[0].(Matrix)[0] |
|
rangeStart = enh.Ts - durationMilliseconds(ms.Range+vs.Offset) |
|
rangeEnd = enh.Ts - durationMilliseconds(vs.Offset) |
|
resultValue float64 |
|
resultHistogram *histogram.FloatHistogram |
|
) |
|
|
|
// No sense in trying to compute a rate without at least two points. Drop |
|
// this Vector element. |
|
if len(samples.Points) < 2 { |
|
return enh.Out |
|
} |
|
|
|
if samples.Points[0].H != nil { |
|
resultHistogram = histogramRate(samples.Points, isCounter) |
|
if resultHistogram == nil { |
|
// Points are a mix of floats and histograms, or the histograms |
|
// are not compatible with each other. |
|
// TODO(beorn7): find a way of communicating the exact reason |
|
return enh.Out |
|
} |
|
} else { |
|
resultValue = samples.Points[len(samples.Points)-1].V - samples.Points[0].V |
|
prevValue := samples.Points[0].V |
|
// We have to iterate through everything even in the non-counter |
|
// case because we have to check that everything is a float. |
|
// TODO(beorn7): Find a way to check that earlier, e.g. by |
|
// handing in a []FloatPoint and a []HistogramPoint separately. |
|
for _, currPoint := range samples.Points[1:] { |
|
if currPoint.H != nil { |
|
return nil // Range contains a mix of histograms and floats. |
|
} |
|
if !isCounter { |
|
continue |
|
} |
|
if currPoint.V < prevValue { |
|
resultValue += prevValue |
|
} |
|
prevValue = currPoint.V |
|
} |
|
} |
|
|
|
// Duration between first/last samples and boundary of range. |
|
durationToStart := float64(samples.Points[0].T-rangeStart) / 1000 |
|
durationToEnd := float64(rangeEnd-samples.Points[len(samples.Points)-1].T) / 1000 |
|
|
|
sampledInterval := float64(samples.Points[len(samples.Points)-1].T-samples.Points[0].T) / 1000 |
|
averageDurationBetweenSamples := sampledInterval / float64(len(samples.Points)-1) |
|
|
|
// TODO(beorn7): Do this for histograms, too. |
|
if isCounter && resultValue > 0 && samples.Points[0].V >= 0 { |
|
// Counters cannot be negative. If we have any slope at |
|
// all (i.e. resultValue went up), we can extrapolate |
|
// the zero point of the counter. If the duration to the |
|
// zero point is shorter than the durationToStart, we |
|
// take the zero point as the start of the series, |
|
// thereby avoiding extrapolation to negative counter |
|
// values. |
|
durationToZero := sampledInterval * (samples.Points[0].V / resultValue) |
|
if durationToZero < durationToStart { |
|
durationToStart = durationToZero |
|
} |
|
} |
|
|
|
// If the first/last samples are close to the boundaries of the range, |
|
// extrapolate the result. This is as we expect that another sample |
|
// will exist given the spacing between samples we've seen thus far, |
|
// with an allowance for noise. |
|
extrapolationThreshold := averageDurationBetweenSamples * 1.1 |
|
extrapolateToInterval := sampledInterval |
|
|
|
if durationToStart < extrapolationThreshold { |
|
extrapolateToInterval += durationToStart |
|
} else { |
|
extrapolateToInterval += averageDurationBetweenSamples / 2 |
|
} |
|
if durationToEnd < extrapolationThreshold { |
|
extrapolateToInterval += durationToEnd |
|
} else { |
|
extrapolateToInterval += averageDurationBetweenSamples / 2 |
|
} |
|
factor := extrapolateToInterval / sampledInterval |
|
if isRate { |
|
factor /= ms.Range.Seconds() |
|
} |
|
if resultHistogram == nil { |
|
resultValue *= factor |
|
} else { |
|
resultHistogram.Scale(factor) |
|
} |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: resultValue, H: resultHistogram}, |
|
}) |
|
} |
|
|
|
// histogramRate is a helper function for extrapolatedRate. It requires |
|
// points[0] to be a histogram. It returns nil if any other Point in points is |
|
// not a histogram. |
|
func histogramRate(points []Point, isCounter bool) *histogram.FloatHistogram { |
|
prev := points[0].H // We already know that this is a histogram. |
|
last := points[len(points)-1].H |
|
if last == nil { |
|
return nil // Range contains a mix of histograms and floats. |
|
} |
|
minSchema := prev.Schema |
|
if last.Schema < minSchema { |
|
minSchema = last.Schema |
|
} |
|
|
|
// First iteration to find out two things: |
|
// - What's the smallest relevant schema? |
|
// - Are all data points histograms? |
|
// TODO(beorn7): Find a way to check that earlier, e.g. by handing in a |
|
// []FloatPoint and a []HistogramPoint separately. |
|
for _, currPoint := range points[1 : len(points)-1] { |
|
curr := currPoint.H |
|
if curr == nil { |
|
return nil // Range contains a mix of histograms and floats. |
|
} |
|
if !isCounter { |
|
continue |
|
} |
|
if curr.Schema < minSchema { |
|
minSchema = curr.Schema |
|
} |
|
} |
|
|
|
h := last.CopyToSchema(minSchema) |
|
h.Sub(prev) |
|
|
|
if isCounter { |
|
// Second iteration to deal with counter resets. |
|
for _, currPoint := range points[1:] { |
|
curr := currPoint.H |
|
if curr.DetectReset(prev) { |
|
h.Add(prev) |
|
} |
|
prev = curr |
|
} |
|
} |
|
return h.Compact(0) |
|
} |
|
|
|
// === delta(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcDelta(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return extrapolatedRate(vals, args, enh, false, false) |
|
} |
|
|
|
// === rate(node parser.ValueTypeMatrix) Vector === |
|
func funcRate(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return extrapolatedRate(vals, args, enh, true, true) |
|
} |
|
|
|
// === increase(node parser.ValueTypeMatrix) Vector === |
|
func funcIncrease(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return extrapolatedRate(vals, args, enh, true, false) |
|
} |
|
|
|
// === irate(node parser.ValueTypeMatrix) Vector === |
|
func funcIrate(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return instantValue(vals, enh.Out, true) |
|
} |
|
|
|
// === idelta(node model.ValMatrix) Vector === |
|
func funcIdelta(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return instantValue(vals, enh.Out, false) |
|
} |
|
|
|
func instantValue(vals []parser.Value, out Vector, isRate bool) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
// No sense in trying to compute a rate without at least two points. Drop |
|
// this Vector element. |
|
if len(samples.Points) < 2 { |
|
return out |
|
} |
|
|
|
lastSample := samples.Points[len(samples.Points)-1] |
|
previousSample := samples.Points[len(samples.Points)-2] |
|
|
|
var resultValue float64 |
|
if isRate && lastSample.V < previousSample.V { |
|
// Counter reset. |
|
resultValue = lastSample.V |
|
} else { |
|
resultValue = lastSample.V - previousSample.V |
|
} |
|
|
|
sampledInterval := lastSample.T - previousSample.T |
|
if sampledInterval == 0 { |
|
// Avoid dividing by 0. |
|
return out |
|
} |
|
|
|
if isRate { |
|
// Convert to per-second. |
|
resultValue /= float64(sampledInterval) / 1000 |
|
} |
|
|
|
return append(out, Sample{ |
|
Point: Point{V: resultValue}, |
|
}) |
|
} |
|
|
|
// Calculate the trend value at the given index i in raw data d. |
|
// This is somewhat analogous to the slope of the trend at the given index. |
|
// The argument "tf" is the trend factor. |
|
// The argument "s0" is the computed smoothed value. |
|
// The argument "s1" is the computed trend factor. |
|
// The argument "b" is the raw input value. |
|
func calcTrendValue(i int, tf, s0, s1, b float64) float64 { |
|
if i == 0 { |
|
return b |
|
} |
|
|
|
x := tf * (s1 - s0) |
|
y := (1 - tf) * b |
|
|
|
return x + y |
|
} |
|
|
|
// Holt-Winters is similar to a weighted moving average, where historical data has exponentially less influence on the current data. |
|
// Holt-Winter also accounts for trends in data. The smoothing factor (0 < sf < 1) affects how historical data will affect the current |
|
// data. A lower smoothing factor increases the influence of historical data. The trend factor (0 < tf < 1) affects |
|
// how trends in historical data will affect the current data. A higher trend factor increases the influence. |
|
// of trends. Algorithm taken from https://en.wikipedia.org/wiki/Exponential_smoothing titled: "Double exponential smoothing". |
|
func funcHoltWinters(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
|
|
// The smoothing factor argument. |
|
sf := vals[1].(Vector)[0].V |
|
|
|
// The trend factor argument. |
|
tf := vals[2].(Vector)[0].V |
|
|
|
// Check that the input parameters are valid. |
|
if sf <= 0 || sf >= 1 { |
|
panic(fmt.Errorf("invalid smoothing factor. Expected: 0 < sf < 1, got: %f", sf)) |
|
} |
|
if tf <= 0 || tf >= 1 { |
|
panic(fmt.Errorf("invalid trend factor. Expected: 0 < tf < 1, got: %f", tf)) |
|
} |
|
|
|
l := len(samples.Points) |
|
|
|
// Can't do the smoothing operation with less than two points. |
|
if l < 2 { |
|
return enh.Out |
|
} |
|
|
|
var s0, s1, b float64 |
|
// Set initial values. |
|
s1 = samples.Points[0].V |
|
b = samples.Points[1].V - samples.Points[0].V |
|
|
|
// Run the smoothing operation. |
|
var x, y float64 |
|
for i := 1; i < l; i++ { |
|
|
|
// Scale the raw value against the smoothing factor. |
|
x = sf * samples.Points[i].V |
|
|
|
// Scale the last smoothed value with the trend at this point. |
|
b = calcTrendValue(i-1, tf, s0, s1, b) |
|
y = (1 - sf) * (s1 + b) |
|
|
|
s0, s1 = s1, x+y |
|
} |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: s1}, |
|
}) |
|
} |
|
|
|
// === sort(node parser.ValueTypeVector) Vector === |
|
func funcSort(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
// NaN should sort to the bottom, so take descending sort with NaN first and |
|
// reverse it. |
|
byValueSorter := vectorByReverseValueHeap(vals[0].(Vector)) |
|
sort.Sort(sort.Reverse(byValueSorter)) |
|
return Vector(byValueSorter) |
|
} |
|
|
|
// === sortDesc(node parser.ValueTypeVector) Vector === |
|
func funcSortDesc(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
// NaN should sort to the bottom, so take ascending sort with NaN first and |
|
// reverse it. |
|
byValueSorter := vectorByValueHeap(vals[0].(Vector)) |
|
sort.Sort(sort.Reverse(byValueSorter)) |
|
return Vector(byValueSorter) |
|
} |
|
|
|
// === clamp(Vector parser.ValueTypeVector, min, max Scalar) Vector === |
|
func funcClamp(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
vec := vals[0].(Vector) |
|
min := vals[1].(Vector)[0].Point.V |
|
max := vals[2].(Vector)[0].Point.V |
|
if max < min { |
|
return enh.Out |
|
} |
|
for _, el := range vec { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: math.Max(min, math.Min(max, el.V))}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === clamp_max(Vector parser.ValueTypeVector, max Scalar) Vector === |
|
func funcClampMax(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
vec := vals[0].(Vector) |
|
max := vals[1].(Vector)[0].Point.V |
|
for _, el := range vec { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: math.Min(max, el.V)}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === clamp_min(Vector parser.ValueTypeVector, min Scalar) Vector === |
|
func funcClampMin(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
vec := vals[0].(Vector) |
|
min := vals[1].(Vector)[0].Point.V |
|
for _, el := range vec { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: math.Max(min, el.V)}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === round(Vector parser.ValueTypeVector, toNearest=1 Scalar) Vector === |
|
func funcRound(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
vec := vals[0].(Vector) |
|
// round returns a number rounded to toNearest. |
|
// Ties are solved by rounding up. |
|
toNearest := float64(1) |
|
if len(args) >= 2 { |
|
toNearest = vals[1].(Vector)[0].Point.V |
|
} |
|
// Invert as it seems to cause fewer floating point accuracy issues. |
|
toNearestInverse := 1.0 / toNearest |
|
|
|
for _, el := range vec { |
|
v := math.Floor(el.V*toNearestInverse+0.5) / toNearestInverse |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: v}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === Scalar(node parser.ValueTypeVector) Scalar === |
|
func funcScalar(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
v := vals[0].(Vector) |
|
if len(v) != 1 { |
|
return append(enh.Out, Sample{ |
|
Point: Point{V: math.NaN()}, |
|
}) |
|
} |
|
return append(enh.Out, Sample{ |
|
Point: Point{V: v[0].V}, |
|
}) |
|
} |
|
|
|
func aggrOverTime(vals []parser.Value, enh *EvalNodeHelper, aggrFn func([]Point) float64) Vector { |
|
el := vals[0].(Matrix)[0] |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: aggrFn(el.Points)}, |
|
}) |
|
} |
|
|
|
// === avg_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcAvgOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
var mean, count, c float64 |
|
for _, v := range values { |
|
count++ |
|
if math.IsInf(mean, 0) { |
|
if math.IsInf(v.V, 0) && (mean > 0) == (v.V > 0) { |
|
// The `mean` and `v.V` values are `Inf` of the same sign. They |
|
// can't be subtracted, but the value of `mean` is correct |
|
// already. |
|
continue |
|
} |
|
if !math.IsInf(v.V, 0) && !math.IsNaN(v.V) { |
|
// At this stage, the mean is an infinite. If the added |
|
// value is neither an Inf or a Nan, we can keep that mean |
|
// value. |
|
// This is required because our calculation below removes |
|
// the mean value, which would look like Inf += x - Inf and |
|
// end up as a NaN. |
|
continue |
|
} |
|
} |
|
mean, c = kahanSumInc(v.V/count-mean/count, mean, c) |
|
} |
|
|
|
if math.IsInf(mean, 0) { |
|
return mean |
|
} |
|
return mean + c |
|
}) |
|
} |
|
|
|
// === count_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcCountOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
return float64(len(values)) |
|
}) |
|
} |
|
|
|
// === last_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcLastOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
el := vals[0].(Matrix)[0] |
|
|
|
return append(enh.Out, Sample{ |
|
Metric: el.Metric, |
|
Point: Point{V: el.Points[len(el.Points)-1].V}, |
|
}) |
|
} |
|
|
|
// === max_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcMaxOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
max := values[0].V |
|
for _, v := range values { |
|
if v.V > max || math.IsNaN(max) { |
|
max = v.V |
|
} |
|
} |
|
return max |
|
}) |
|
} |
|
|
|
// === min_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcMinOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
min := values[0].V |
|
for _, v := range values { |
|
if v.V < min || math.IsNaN(min) { |
|
min = v.V |
|
} |
|
} |
|
return min |
|
}) |
|
} |
|
|
|
// === sum_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcSumOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
var sum, c float64 |
|
for _, v := range values { |
|
sum, c = kahanSumInc(v.V, sum, c) |
|
} |
|
if math.IsInf(sum, 0) { |
|
return sum |
|
} |
|
return sum + c |
|
}) |
|
} |
|
|
|
// === quantile_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcQuantileOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
q := vals[0].(Vector)[0].V |
|
el := vals[1].(Matrix)[0] |
|
|
|
values := make(vectorByValueHeap, 0, len(el.Points)) |
|
for _, v := range el.Points { |
|
values = append(values, Sample{Point: Point{V: v.V}}) |
|
} |
|
return append(enh.Out, Sample{ |
|
Point: Point{V: quantile(q, values)}, |
|
}) |
|
} |
|
|
|
// === stddev_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcStddevOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
var count float64 |
|
var mean, cMean float64 |
|
var aux, cAux float64 |
|
for _, v := range values { |
|
count++ |
|
delta := v.V - (mean + cMean) |
|
mean, cMean = kahanSumInc(delta/count, mean, cMean) |
|
aux, cAux = kahanSumInc(delta*(v.V-(mean+cMean)), aux, cAux) |
|
} |
|
return math.Sqrt((aux + cAux) / count) |
|
}) |
|
} |
|
|
|
// === stdvar_over_time(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcStdvarOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
var count float64 |
|
var mean, cMean float64 |
|
var aux, cAux float64 |
|
for _, v := range values { |
|
count++ |
|
delta := v.V - (mean + cMean) |
|
mean, cMean = kahanSumInc(delta/count, mean, cMean) |
|
aux, cAux = kahanSumInc(delta*(v.V-(mean+cMean)), aux, cAux) |
|
} |
|
return (aux + cAux) / count |
|
}) |
|
} |
|
|
|
// === absent(Vector parser.ValueTypeVector) Vector === |
|
func funcAbsent(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
if len(vals[0].(Vector)) > 0 { |
|
return enh.Out |
|
} |
|
return append(enh.Out, |
|
Sample{ |
|
Metric: createLabelsForAbsentFunction(args[0]), |
|
Point: Point{V: 1}, |
|
}) |
|
} |
|
|
|
// === absent_over_time(Vector parser.ValueTypeMatrix) Vector === |
|
// As this function has a matrix as argument, it does not get all the Series. |
|
// This function will return 1 if the matrix has at least one element. |
|
// Due to engine optimization, this function is only called when this condition is true. |
|
// Then, the engine post-processes the results to get the expected output. |
|
func funcAbsentOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return append(enh.Out, |
|
Sample{ |
|
Point: Point{V: 1}, |
|
}) |
|
} |
|
|
|
// === present_over_time(Vector parser.ValueTypeMatrix) Vector === |
|
func funcPresentOverTime(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return aggrOverTime(vals, enh, func(values []Point) float64 { |
|
return 1 |
|
}) |
|
} |
|
|
|
func simpleFunc(vals []parser.Value, enh *EvalNodeHelper, f func(float64) float64) Vector { |
|
for _, el := range vals[0].(Vector) { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: f(el.V)}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === abs(Vector parser.ValueTypeVector) Vector === |
|
func funcAbs(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Abs) |
|
} |
|
|
|
// === ceil(Vector parser.ValueTypeVector) Vector === |
|
func funcCeil(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Ceil) |
|
} |
|
|
|
// === floor(Vector parser.ValueTypeVector) Vector === |
|
func funcFloor(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Floor) |
|
} |
|
|
|
// === exp(Vector parser.ValueTypeVector) Vector === |
|
func funcExp(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Exp) |
|
} |
|
|
|
// === sqrt(Vector VectorNode) Vector === |
|
func funcSqrt(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Sqrt) |
|
} |
|
|
|
// === ln(Vector parser.ValueTypeVector) Vector === |
|
func funcLn(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Log) |
|
} |
|
|
|
// === log2(Vector parser.ValueTypeVector) Vector === |
|
func funcLog2(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Log2) |
|
} |
|
|
|
// === log10(Vector parser.ValueTypeVector) Vector === |
|
func funcLog10(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Log10) |
|
} |
|
|
|
// === sin(Vector parser.ValueTypeVector) Vector === |
|
func funcSin(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Sin) |
|
} |
|
|
|
// === cos(Vector parser.ValueTypeVector) Vector === |
|
func funcCos(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Cos) |
|
} |
|
|
|
// === tan(Vector parser.ValueTypeVector) Vector === |
|
func funcTan(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Tan) |
|
} |
|
|
|
// == asin(Vector parser.ValueTypeVector) Vector === |
|
func funcAsin(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Asin) |
|
} |
|
|
|
// == acos(Vector parser.ValueTypeVector) Vector === |
|
func funcAcos(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Acos) |
|
} |
|
|
|
// == atan(Vector parser.ValueTypeVector) Vector === |
|
func funcAtan(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Atan) |
|
} |
|
|
|
// == sinh(Vector parser.ValueTypeVector) Vector === |
|
func funcSinh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Sinh) |
|
} |
|
|
|
// == cosh(Vector parser.ValueTypeVector) Vector === |
|
func funcCosh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Cosh) |
|
} |
|
|
|
// == tanh(Vector parser.ValueTypeVector) Vector === |
|
func funcTanh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Tanh) |
|
} |
|
|
|
// == asinh(Vector parser.ValueTypeVector) Vector === |
|
func funcAsinh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Asinh) |
|
} |
|
|
|
// == acosh(Vector parser.ValueTypeVector) Vector === |
|
func funcAcosh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Acosh) |
|
} |
|
|
|
// == atanh(Vector parser.ValueTypeVector) Vector === |
|
func funcAtanh(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, math.Atanh) |
|
} |
|
|
|
// === rad(Vector parser.ValueTypeVector) Vector === |
|
func funcRad(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, func(v float64) float64 { |
|
return v * math.Pi / 180 |
|
}) |
|
} |
|
|
|
// === deg(Vector parser.ValueTypeVector) Vector === |
|
func funcDeg(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, func(v float64) float64 { |
|
return v * 180 / math.Pi |
|
}) |
|
} |
|
|
|
// === pi() Scalar === |
|
func funcPi(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return Vector{Sample{Point: Point{ |
|
V: math.Pi, |
|
}}} |
|
} |
|
|
|
// === sgn(Vector parser.ValueTypeVector) Vector === |
|
func funcSgn(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return simpleFunc(vals, enh, func(v float64) float64 { |
|
if v < 0 { |
|
return -1 |
|
} else if v > 0 { |
|
return 1 |
|
} |
|
return v |
|
}) |
|
} |
|
|
|
// === timestamp(Vector parser.ValueTypeVector) Vector === |
|
func funcTimestamp(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
vec := vals[0].(Vector) |
|
for _, el := range vec { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: float64(el.T) / 1000}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
func kahanSum(samples []float64) float64 { |
|
var sum, c float64 |
|
|
|
for _, v := range samples { |
|
sum, c = kahanSumInc(v, sum, c) |
|
} |
|
return sum + c |
|
} |
|
|
|
func kahanSumInc(inc, sum, c float64) (newSum, newC float64) { |
|
t := sum + inc |
|
// Using Neumaier improvement, swap if next term larger than sum. |
|
if math.Abs(sum) >= math.Abs(inc) { |
|
c += (sum - t) + inc |
|
} else { |
|
c += (inc - t) + sum |
|
} |
|
return t, c |
|
} |
|
|
|
// linearRegression performs a least-square linear regression analysis on the |
|
// provided SamplePairs. It returns the slope, and the intercept value at the |
|
// provided time. |
|
func linearRegression(samples []Point, interceptTime int64) (slope, intercept float64) { |
|
var ( |
|
n float64 |
|
sumX, cX float64 |
|
sumY, cY float64 |
|
sumXY, cXY float64 |
|
sumX2, cX2 float64 |
|
initY float64 |
|
constY bool |
|
) |
|
initY = samples[0].V |
|
constY = true |
|
for i, sample := range samples { |
|
// Set constY to false if any new y values are encountered. |
|
if constY && i > 0 && sample.V != initY { |
|
constY = false |
|
} |
|
n += 1.0 |
|
x := float64(sample.T-interceptTime) / 1e3 |
|
sumX, cX = kahanSumInc(x, sumX, cX) |
|
sumY, cY = kahanSumInc(sample.V, sumY, cY) |
|
sumXY, cXY = kahanSumInc(x*sample.V, sumXY, cXY) |
|
sumX2, cX2 = kahanSumInc(x*x, sumX2, cX2) |
|
} |
|
if constY { |
|
if math.IsInf(initY, 0) { |
|
return math.NaN(), math.NaN() |
|
} |
|
return 0, initY |
|
} |
|
sumX = sumX + cX |
|
sumY = sumY + cY |
|
sumXY = sumXY + cXY |
|
sumX2 = sumX2 + cX2 |
|
|
|
covXY := sumXY - sumX*sumY/n |
|
varX := sumX2 - sumX*sumX/n |
|
|
|
slope = covXY / varX |
|
intercept = sumY/n - slope*sumX/n |
|
return slope, intercept |
|
} |
|
|
|
// === deriv(node parser.ValueTypeMatrix) Vector === |
|
func funcDeriv(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
|
|
// No sense in trying to compute a derivative without at least two points. |
|
// Drop this Vector element. |
|
if len(samples.Points) < 2 { |
|
return enh.Out |
|
} |
|
|
|
// We pass in an arbitrary timestamp that is near the values in use |
|
// to avoid floating point accuracy issues, see |
|
// https://github.com/prometheus/prometheus/issues/2674 |
|
slope, _ := linearRegression(samples.Points, samples.Points[0].T) |
|
return append(enh.Out, Sample{ |
|
Point: Point{V: slope}, |
|
}) |
|
} |
|
|
|
// === predict_linear(node parser.ValueTypeMatrix, k parser.ValueTypeScalar) Vector === |
|
func funcPredictLinear(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
duration := vals[1].(Vector)[0].V |
|
// No sense in trying to predict anything without at least two points. |
|
// Drop this Vector element. |
|
if len(samples.Points) < 2 { |
|
return enh.Out |
|
} |
|
slope, intercept := linearRegression(samples.Points, enh.Ts) |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: slope*duration + intercept}, |
|
}) |
|
} |
|
|
|
// === histogram_count(Vector parser.ValueTypeVector) Vector === |
|
func funcHistogramCount(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
inVec := vals[0].(Vector) |
|
|
|
for _, sample := range inVec { |
|
// Skip non-histogram samples. |
|
if sample.H == nil { |
|
continue |
|
} |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(sample.Metric), |
|
Point: Point{V: sample.H.Count}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === histogram_sum(Vector parser.ValueTypeVector) Vector === |
|
func funcHistogramSum(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
inVec := vals[0].(Vector) |
|
|
|
for _, sample := range inVec { |
|
// Skip non-histogram samples. |
|
if sample.H == nil { |
|
continue |
|
} |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(sample.Metric), |
|
Point: Point{V: sample.H.Sum}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === histogram_fraction(lower, upper parser.ValueTypeScalar, Vector parser.ValueTypeVector) Vector === |
|
func funcHistogramFraction(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
lower := vals[0].(Vector)[0].V |
|
upper := vals[1].(Vector)[0].V |
|
inVec := vals[2].(Vector) |
|
|
|
for _, sample := range inVec { |
|
// Skip non-histogram samples. |
|
if sample.H == nil { |
|
continue |
|
} |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(sample.Metric), |
|
Point: Point{V: histogramFraction(lower, upper, sample.H)}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === histogram_quantile(k parser.ValueTypeScalar, Vector parser.ValueTypeVector) Vector === |
|
func funcHistogramQuantile(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
q := vals[0].(Vector)[0].V |
|
inVec := vals[1].(Vector) |
|
|
|
if enh.signatureToMetricWithBuckets == nil { |
|
enh.signatureToMetricWithBuckets = map[string]*metricWithBuckets{} |
|
} else { |
|
for _, v := range enh.signatureToMetricWithBuckets { |
|
v.buckets = v.buckets[:0] |
|
} |
|
} |
|
|
|
var histogramSamples []Sample |
|
|
|
for _, sample := range inVec { |
|
// We are only looking for conventional buckets here. Remember |
|
// the histograms for later treatment. |
|
if sample.H != nil { |
|
histogramSamples = append(histogramSamples, sample) |
|
continue |
|
} |
|
|
|
upperBound, err := strconv.ParseFloat( |
|
sample.Metric.Get(model.BucketLabel), 64, |
|
) |
|
if err != nil { |
|
// Oops, no bucket label or malformed label value. Skip. |
|
// TODO(beorn7): Issue a warning somehow. |
|
continue |
|
} |
|
enh.lblBuf = sample.Metric.BytesWithoutLabels(enh.lblBuf, labels.BucketLabel) |
|
mb, ok := enh.signatureToMetricWithBuckets[string(enh.lblBuf)] |
|
if !ok { |
|
sample.Metric = labels.NewBuilder(sample.Metric). |
|
Del(excludedLabels...). |
|
Labels(nil) |
|
|
|
mb = &metricWithBuckets{sample.Metric, nil} |
|
enh.signatureToMetricWithBuckets[string(enh.lblBuf)] = mb |
|
} |
|
mb.buckets = append(mb.buckets, bucket{upperBound, sample.V}) |
|
|
|
} |
|
|
|
// Now deal with the histograms. |
|
for _, sample := range histogramSamples { |
|
// We have to reconstruct the exact same signature as above for |
|
// a conventional histogram, just ignoring any le label. |
|
enh.lblBuf = sample.Metric.Bytes(enh.lblBuf) |
|
if mb, ok := enh.signatureToMetricWithBuckets[string(enh.lblBuf)]; ok && len(mb.buckets) > 0 { |
|
// At this data point, we have conventional histogram |
|
// buckets and a native histogram with the same name and |
|
// labels. Do not evaluate anything. |
|
// TODO(beorn7): Issue a warning somehow. |
|
delete(enh.signatureToMetricWithBuckets, string(enh.lblBuf)) |
|
continue |
|
} |
|
|
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(sample.Metric), |
|
Point: Point{V: histogramQuantile(q, sample.H)}, |
|
}) |
|
} |
|
|
|
for _, mb := range enh.signatureToMetricWithBuckets { |
|
if len(mb.buckets) > 0 { |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: mb.metric, |
|
Point: Point{V: bucketQuantile(q, mb.buckets)}, |
|
}) |
|
} |
|
} |
|
|
|
return enh.Out |
|
} |
|
|
|
// === resets(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcResets(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
|
|
resets := 0 |
|
prev := samples.Points[0].V |
|
for _, sample := range samples.Points[1:] { |
|
current := sample.V |
|
if current < prev { |
|
resets++ |
|
} |
|
prev = current |
|
} |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: float64(resets)}, |
|
}) |
|
} |
|
|
|
// === changes(Matrix parser.ValueTypeMatrix) Vector === |
|
func funcChanges(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
samples := vals[0].(Matrix)[0] |
|
|
|
changes := 0 |
|
prev := samples.Points[0].V |
|
for _, sample := range samples.Points[1:] { |
|
current := sample.V |
|
if current != prev && !(math.IsNaN(current) && math.IsNaN(prev)) { |
|
changes++ |
|
} |
|
prev = current |
|
} |
|
|
|
return append(enh.Out, Sample{ |
|
Point: Point{V: float64(changes)}, |
|
}) |
|
} |
|
|
|
// === label_replace(Vector parser.ValueTypeVector, dst_label, replacement, src_labelname, regex parser.ValueTypeString) Vector === |
|
func funcLabelReplace(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
var ( |
|
vector = vals[0].(Vector) |
|
dst = stringFromArg(args[1]) |
|
repl = stringFromArg(args[2]) |
|
src = stringFromArg(args[3]) |
|
regexStr = stringFromArg(args[4]) |
|
) |
|
|
|
if enh.regex == nil { |
|
var err error |
|
enh.regex, err = regexp.Compile("^(?:" + regexStr + ")$") |
|
if err != nil { |
|
panic(fmt.Errorf("invalid regular expression in label_replace(): %s", regexStr)) |
|
} |
|
if !model.LabelNameRE.MatchString(dst) { |
|
panic(fmt.Errorf("invalid destination label name in label_replace(): %s", dst)) |
|
} |
|
enh.Dmn = make(map[uint64]labels.Labels, len(enh.Out)) |
|
} |
|
|
|
for _, el := range vector { |
|
h := el.Metric.Hash() |
|
var outMetric labels.Labels |
|
if l, ok := enh.Dmn[h]; ok { |
|
outMetric = l |
|
} else { |
|
srcVal := el.Metric.Get(src) |
|
indexes := enh.regex.FindStringSubmatchIndex(srcVal) |
|
if indexes == nil { |
|
// If there is no match, no replacement should take place. |
|
outMetric = el.Metric |
|
enh.Dmn[h] = outMetric |
|
} else { |
|
res := enh.regex.ExpandString([]byte{}, repl, srcVal, indexes) |
|
|
|
lb := labels.NewBuilder(el.Metric).Del(dst) |
|
if len(res) > 0 { |
|
lb.Set(dst, string(res)) |
|
} |
|
outMetric = lb.Labels(nil) |
|
enh.Dmn[h] = outMetric |
|
} |
|
} |
|
|
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: outMetric, |
|
Point: Point{V: el.Point.V}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === Vector(s Scalar) Vector === |
|
func funcVector(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return append(enh.Out, |
|
Sample{ |
|
Metric: labels.Labels{}, |
|
Point: Point{V: vals[0].(Vector)[0].V}, |
|
}) |
|
} |
|
|
|
// === label_join(vector model.ValVector, dest_labelname, separator, src_labelname...) Vector === |
|
func funcLabelJoin(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
var ( |
|
vector = vals[0].(Vector) |
|
dst = stringFromArg(args[1]) |
|
sep = stringFromArg(args[2]) |
|
srcLabels = make([]string, len(args)-3) |
|
) |
|
|
|
if enh.Dmn == nil { |
|
enh.Dmn = make(map[uint64]labels.Labels, len(enh.Out)) |
|
} |
|
|
|
for i := 3; i < len(args); i++ { |
|
src := stringFromArg(args[i]) |
|
if !model.LabelName(src).IsValid() { |
|
panic(fmt.Errorf("invalid source label name in label_join(): %s", src)) |
|
} |
|
srcLabels[i-3] = src |
|
} |
|
|
|
if !model.LabelName(dst).IsValid() { |
|
panic(fmt.Errorf("invalid destination label name in label_join(): %s", dst)) |
|
} |
|
|
|
srcVals := make([]string, len(srcLabels)) |
|
for _, el := range vector { |
|
h := el.Metric.Hash() |
|
var outMetric labels.Labels |
|
if l, ok := enh.Dmn[h]; ok { |
|
outMetric = l |
|
} else { |
|
|
|
for i, src := range srcLabels { |
|
srcVals[i] = el.Metric.Get(src) |
|
} |
|
|
|
lb := labels.NewBuilder(el.Metric) |
|
|
|
strval := strings.Join(srcVals, sep) |
|
if strval == "" { |
|
lb.Del(dst) |
|
} else { |
|
lb.Set(dst, strval) |
|
} |
|
|
|
outMetric = lb.Labels(nil) |
|
enh.Dmn[h] = outMetric |
|
} |
|
|
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: outMetric, |
|
Point: Point{V: el.Point.V}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// Common code for date related functions. |
|
func dateWrapper(vals []parser.Value, enh *EvalNodeHelper, f func(time.Time) float64) Vector { |
|
if len(vals) == 0 { |
|
return append(enh.Out, |
|
Sample{ |
|
Metric: labels.Labels{}, |
|
Point: Point{V: f(time.Unix(enh.Ts/1000, 0).UTC())}, |
|
}) |
|
} |
|
|
|
for _, el := range vals[0].(Vector) { |
|
t := time.Unix(int64(el.V), 0).UTC() |
|
enh.Out = append(enh.Out, Sample{ |
|
Metric: enh.DropMetricName(el.Metric), |
|
Point: Point{V: f(t)}, |
|
}) |
|
} |
|
return enh.Out |
|
} |
|
|
|
// === days_in_month(v Vector) Scalar === |
|
func funcDaysInMonth(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(32 - time.Date(t.Year(), t.Month(), 32, 0, 0, 0, 0, time.UTC).Day()) |
|
}) |
|
} |
|
|
|
// === day_of_month(v Vector) Scalar === |
|
func funcDayOfMonth(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Day()) |
|
}) |
|
} |
|
|
|
// === day_of_week(v Vector) Scalar === |
|
func funcDayOfWeek(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Weekday()) |
|
}) |
|
} |
|
|
|
// === day_of_year(v Vector) Scalar === |
|
func funcDayOfYear(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.YearDay()) |
|
}) |
|
} |
|
|
|
// === hour(v Vector) Scalar === |
|
func funcHour(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Hour()) |
|
}) |
|
} |
|
|
|
// === minute(v Vector) Scalar === |
|
func funcMinute(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Minute()) |
|
}) |
|
} |
|
|
|
// === month(v Vector) Scalar === |
|
func funcMonth(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Month()) |
|
}) |
|
} |
|
|
|
// === year(v Vector) Scalar === |
|
func funcYear(vals []parser.Value, args parser.Expressions, enh *EvalNodeHelper) Vector { |
|
return dateWrapper(vals, enh, func(t time.Time) float64 { |
|
return float64(t.Year()) |
|
}) |
|
} |
|
|
|
// FunctionCalls is a list of all functions supported by PromQL, including their types. |
|
var FunctionCalls = map[string]FunctionCall{ |
|
"abs": funcAbs, |
|
"absent": funcAbsent, |
|
"absent_over_time": funcAbsentOverTime, |
|
"acos": funcAcos, |
|
"acosh": funcAcosh, |
|
"asin": funcAsin, |
|
"asinh": funcAsinh, |
|
"atan": funcAtan, |
|
"atanh": funcAtanh, |
|
"avg_over_time": funcAvgOverTime, |
|
"ceil": funcCeil, |
|
"changes": funcChanges, |
|
"clamp": funcClamp, |
|
"clamp_max": funcClampMax, |
|
"clamp_min": funcClampMin, |
|
"cos": funcCos, |
|
"cosh": funcCosh, |
|
"count_over_time": funcCountOverTime, |
|
"days_in_month": funcDaysInMonth, |
|
"day_of_month": funcDayOfMonth, |
|
"day_of_week": funcDayOfWeek, |
|
"day_of_year": funcDayOfYear, |
|
"deg": funcDeg, |
|
"delta": funcDelta, |
|
"deriv": funcDeriv, |
|
"exp": funcExp, |
|
"floor": funcFloor, |
|
"histogram_count": funcHistogramCount, |
|
"histogram_fraction": funcHistogramFraction, |
|
"histogram_quantile": funcHistogramQuantile, |
|
"histogram_sum": funcHistogramSum, |
|
"holt_winters": funcHoltWinters, |
|
"hour": funcHour, |
|
"idelta": funcIdelta, |
|
"increase": funcIncrease, |
|
"irate": funcIrate, |
|
"label_replace": funcLabelReplace, |
|
"label_join": funcLabelJoin, |
|
"ln": funcLn, |
|
"log10": funcLog10, |
|
"log2": funcLog2, |
|
"last_over_time": funcLastOverTime, |
|
"max_over_time": funcMaxOverTime, |
|
"min_over_time": funcMinOverTime, |
|
"minute": funcMinute, |
|
"month": funcMonth, |
|
"pi": funcPi, |
|
"predict_linear": funcPredictLinear, |
|
"present_over_time": funcPresentOverTime, |
|
"quantile_over_time": funcQuantileOverTime, |
|
"rad": funcRad, |
|
"rate": funcRate, |
|
"resets": funcResets, |
|
"round": funcRound, |
|
"scalar": funcScalar, |
|
"sgn": funcSgn, |
|
"sin": funcSin, |
|
"sinh": funcSinh, |
|
"sort": funcSort, |
|
"sort_desc": funcSortDesc, |
|
"sqrt": funcSqrt, |
|
"stddev_over_time": funcStddevOverTime, |
|
"stdvar_over_time": funcStdvarOverTime, |
|
"sum_over_time": funcSumOverTime, |
|
"tan": funcTan, |
|
"tanh": funcTanh, |
|
"time": funcTime, |
|
"timestamp": funcTimestamp, |
|
"vector": funcVector, |
|
"year": funcYear, |
|
} |
|
|
|
// AtModifierUnsafeFunctions are the functions whose result |
|
// can vary if evaluation time is changed when the arguments are |
|
// step invariant. It also includes functions that use the timestamps |
|
// of the passed instant vector argument to calculate a result since |
|
// that can also change with change in eval time. |
|
var AtModifierUnsafeFunctions = map[string]struct{}{ |
|
// Step invariant functions. |
|
"days_in_month": {}, "day_of_month": {}, "day_of_week": {}, "day_of_year": {}, |
|
"hour": {}, "minute": {}, "month": {}, "year": {}, |
|
"predict_linear": {}, "time": {}, |
|
// Uses timestamp of the argument for the result, |
|
// hence unsafe to use with @ modifier. |
|
"timestamp": {}, |
|
} |
|
|
|
type vectorByValueHeap Vector |
|
|
|
func (s vectorByValueHeap) Len() int { |
|
return len(s) |
|
} |
|
|
|
func (s vectorByValueHeap) Less(i, j int) bool { |
|
if math.IsNaN(s[i].V) { |
|
return true |
|
} |
|
return s[i].V < s[j].V |
|
} |
|
|
|
func (s vectorByValueHeap) Swap(i, j int) { |
|
s[i], s[j] = s[j], s[i] |
|
} |
|
|
|
func (s *vectorByValueHeap) Push(x interface{}) { |
|
*s = append(*s, *(x.(*Sample))) |
|
} |
|
|
|
func (s *vectorByValueHeap) Pop() interface{} { |
|
old := *s |
|
n := len(old) |
|
el := old[n-1] |
|
*s = old[0 : n-1] |
|
return el |
|
} |
|
|
|
type vectorByReverseValueHeap Vector |
|
|
|
func (s vectorByReverseValueHeap) Len() int { |
|
return len(s) |
|
} |
|
|
|
func (s vectorByReverseValueHeap) Less(i, j int) bool { |
|
if math.IsNaN(s[i].V) { |
|
return true |
|
} |
|
return s[i].V > s[j].V |
|
} |
|
|
|
func (s vectorByReverseValueHeap) Swap(i, j int) { |
|
s[i], s[j] = s[j], s[i] |
|
} |
|
|
|
func (s *vectorByReverseValueHeap) Push(x interface{}) { |
|
*s = append(*s, *(x.(*Sample))) |
|
} |
|
|
|
func (s *vectorByReverseValueHeap) Pop() interface{} { |
|
old := *s |
|
n := len(old) |
|
el := old[n-1] |
|
*s = old[0 : n-1] |
|
return el |
|
} |
|
|
|
// createLabelsForAbsentFunction returns the labels that are uniquely and exactly matched |
|
// in a given expression. It is used in the absent functions. |
|
func createLabelsForAbsentFunction(expr parser.Expr) labels.Labels { |
|
m := labels.Labels{} |
|
|
|
var lm []*labels.Matcher |
|
switch n := expr.(type) { |
|
case *parser.VectorSelector: |
|
lm = n.LabelMatchers |
|
case *parser.MatrixSelector: |
|
lm = n.VectorSelector.(*parser.VectorSelector).LabelMatchers |
|
default: |
|
return m |
|
} |
|
|
|
empty := []string{} |
|
for _, ma := range lm { |
|
if ma.Name == labels.MetricName { |
|
continue |
|
} |
|
if ma.Type == labels.MatchEqual && !m.Has(ma.Name) { |
|
m = labels.NewBuilder(m).Set(ma.Name, ma.Value).Labels(nil) |
|
} else { |
|
empty = append(empty, ma.Name) |
|
} |
|
} |
|
|
|
for _, v := range empty { |
|
m = labels.NewBuilder(m).Del(v).Labels(nil) |
|
} |
|
return m |
|
} |
|
|
|
func stringFromArg(e parser.Expr) string { |
|
tmp := unwrapStepInvariantExpr(e) // Unwrap StepInvariant |
|
unwrapParenExpr(&tmp) // Optionally unwrap ParenExpr |
|
return tmp.(*parser.StringLiteral).Val |
|
}
|
|
|