Module aggr_over_time

Source

Structsยง

AbsentOverTime
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.
AvgOverTime
The average value of all points in the specified interval.
CountOverTime
The count of all values in the specified interval.
LastOverTime
The most recent point value in specified interval.
MaxOverTime
The maximum value of all points in the specified interval.
MinOverTime
The minimum value of all points in the specified interval.
PresentOverTime
the value 1 for any series in the specified interval.
StddevOverTime
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
StdvarOverTime
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
SumOverTime
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 ๐Ÿ”’