From 354c0b262a7541a767d5dfd62d5785968eb52e0b Mon Sep 17 00:00:00 2001 From: Pavel Rysnik <126406830+sakuuj@users.noreply.github.com> Date: Mon, 23 Mar 2026 18:42:45 +0300 Subject: [PATCH] docs: change 'standard variance' to 'variance' Update functions.md file, change 'standard variance' to 'variance' in function descriptions Signed-off-by: Pavel Rysnik <126406830+sakuuj@users.noreply.github.com> --- docs/querying/functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/querying/functions.md b/docs/querying/functions.md index 64e172000f..883f788a9b 100644 --- a/docs/querying/functions.md +++ b/docs/querying/functions.md @@ -459,7 +459,7 @@ the zero bucket and for buckets with custom boundaries, the arithmetic mean is u For the usual exponential buckets, the geometric mean is used. Float samples are ignored and do not show up in the returned vector. -Similarly, `histogram_stdvar(v instant-vector)` returns the estimated standard +Similarly, `histogram_stdvar(v instant-vector)` returns the estimated variance of observations for each native histogram sample in `v`. ## `hour()` @@ -866,7 +866,7 @@ over time and return an instant vector with per-series aggregation results: * `count_over_time(range-vector)`: the count of all samples in the specified interval. * `quantile_over_time(scalar, range-vector)`: the φ-quantile (0 ≤ φ ≤ 1) of all float samples in the specified interval. * `stddev_over_time(range-vector)`: the population standard deviation of all float samples in the specified interval. -* `stdvar_over_time(range-vector)`: the population standard variance of all float samples in the specified interval. +* `stdvar_over_time(range-vector)`: the population variance of all float samples in the specified interval. * `last_over_time(range-vector)`: the most recent sample in the specified interval. * `present_over_time(range-vector)`: the value 1 for any series in the specified interval.