Structsยง
- 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.
- The average value of all points in the specified interval.
- The count of all values in the specified interval.
- The most recent point value in specified interval.
- The maximum value of all points in the specified interval.
- The minimum value of all points in the specified interval.
- the value 1 for any series in the specified interval.
- 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
- 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
- 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