Structsยง
- Absent
Over Time - absent_over_time returns an empty vector if the range vector passed to it has any elements (floats or native histograms) and a 1-element vector with the value 1 if the range vector passed to it has no elements.
- AvgOver
Time - The average value of all points in the specified interval.
- Count
Over Time - The count of all values in the specified interval.
- Last
Over Time - The most recent point value in specified interval.
- MaxOver
Time - The maximum value of all points in the specified interval.
- MinOver
Time - The minimum value of all points in the specified interval.
- Present
Over Time - the value 1 for any series in the specified interval.
- Stddev
Over Time - the population standard deviation of the values in the specified interval. Prometheusโs implementation: https://github.com/prometheus/prometheus/blob/f55ab2217984770aa1eecd0f2d5f54580029b1c0/promql/functions.go#L556-L569
- Stdvar
Over Time - the population standard variance of the values in the specified interval. DataFusionโs implementation: https://github.com/apache/arrow-datafusion/blob/292eb954fc0bad3a1febc597233ba26cb60bda3e/datafusion/physical-expr/src/aggregate/variance.rs#L224-#L241
- SumOver
Time - The sum of all values in the specified interval.
Functionsยง
- absent_
over_ ๐time - avg_
over_ ๐time - count_
over_ ๐time - last_
over_ ๐time - max_
over_ ๐time - min_
over_ ๐time - present_
over_ ๐time - stddev_
over_ ๐time - stdvar_
over_ ๐time - sum_
over_ ๐time