From eaac8b7b2ece76640d3c80b7808c3422fa0fce4e Mon Sep 17 00:00:00 2001 From: George Robinson Date: Thu, 22 Jun 2023 10:49:39 +0100 Subject: [PATCH] Fix example matchers in docs Signed-off-by: George Robinson --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index d2644649..99aa8abd 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -463,7 +463,7 @@ Here are some examples of valid string matchers: As shown below, in the short-form, it's generally better to quote the list elements to avoid problems with special characters like commas: ```yaml - matchers: [ "foo = bar,baz", "dings != bums" ] + matchers: [ "foo = \"bar,baz\"", "dings != bums" ] ``` 3. You can also put both matchers into one PromQL-like string. Single quotes for the whole string work best here.