From 3eca49c4a682d856be258967131399e4d06b7cf6 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Mon, 23 Aug 2021 12:04:19 +0300 Subject: [PATCH] docs/MetricsQL.md: fix the indentation for `median` function --- docs/MetricsQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/MetricsQL.md b/docs/MetricsQL.md index 3f11630a22..c3b84df26e 100644 --- a/docs/MetricsQL.md +++ b/docs/MetricsQL.md @@ -752,7 +752,7 @@ See also [implicit query conversions](#implicit-query-conversions). `max(q) by (group_labels)` returns the maximum value per each `group_labels` for all the time series returned by `q`. The aggregate is calculated individually per each group of points with the same timestamp. This function is supported by PromQL. -### median +#### median `median(q) by (group_labels)` returns the median value per each `group_labels` for all the time series returned by `q`. The aggregate is calculated individually per each group of points with the same timestamp.