From e3726a19caa9cc69e6d1a5019abe1d3fa26a487b Mon Sep 17 00:00:00 2001 From: Katarina Yang <69819079+yangkb09@users.noreply.github.com> Date: Fri, 22 Oct 2021 10:15:21 -0400 Subject: [PATCH] add missing quote to log_queries.md (#4527) --- docs/sources/logql/log_queries.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/logql/log_queries.md b/docs/sources/logql/log_queries.md index da8ac6a9a9..95eef2b79c 100644 --- a/docs/sources/logql/log_queries.md +++ b/docs/sources/logql/log_queries.md @@ -34,7 +34,7 @@ A more granular log stream selector then reduces the number of searched streams This means that the labels passed to the log stream selector will affect the relative performance of the query's execution. The log stream selector is specified by one or more comma-separated key-value pairs. Each key is a log label and each value is that label's value. -Curly braces (`{` and `}`) delimit the stream selector. +Curly braces (`{` and `}`) delimit the stream selector. Consider this stream selector: @@ -142,7 +142,7 @@ Line filter expression examples: and is followed by 1 or more word characters. A complete query with a regular expression: ``` - {name="cassandra"} |~ `error=\w+` + {name="cassandra"} |~ `error=\w+` ``` Filter operators can be chained. @@ -358,7 +358,7 @@ The **json** parser operates in two modes: If an array or an object returned by an expression, it will be assigned to the label in json format. - For example, `| json server_list="servers", headers="request.headers` will extract: + For example, `| json server_list="servers", headers="request.headers"` will extract: ```kv "server_list" => `["129.0.1.1","10.2.1.3"]`