From 034cdb0aa47921d79a797726520ff92d015b7b3a Mon Sep 17 00:00:00 2001 From: smedbergM Date: Tue, 15 Jun 2021 13:51:07 -0600 Subject: [PATCH] Revert change in label_join per @RichiH Signed-off-by: smedbergM --- docs/querying/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/querying/functions.md b/docs/querying/functions.md index d6496edf7..848908ca9 100644 --- a/docs/querying/functions.md +++ b/docs/querying/functions.md @@ -272,7 +272,7 @@ For each timeseries in `v`, `label_join(v instant-vector, dst_label string, sepa using `separator` and returns the timeseries with the label `dst_label` containing the joined value. There can be any number of `src_labels` in this function. -This example will return a vector with each time series having a `foo` label added to it, with the value `a,b,c`: +This example will return a vector with each time series having a `foo` label with the value `a,b,c` added to it: ``` label_join(up{job="api-server",src1="a",src2="b",src3="c"}, "foo", ",", "src1", "src2", "src3")