From 7b2748e7a1657f511718dc69c39f9cd540161c83 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 20 Jun 2023 00:44:59 -0700 Subject: [PATCH] docs/VictoriaLogs/LogsQL.md: typo fixes --- docs/VictoriaLogs/LogsQL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/VictoriaLogs/LogsQL.md b/docs/VictoriaLogs/LogsQL.md index a0dd498c6..b91ce7718 100644 --- a/docs/VictoriaLogs/LogsQL.md +++ b/docs/VictoriaLogs/LogsQL.md @@ -740,7 +740,7 @@ If the field name contains special chars, which may clash with the query syntax, For example, the following query matches `event:original` field containing `(error, "open file")` sequence: ```logsql -"event.original":seq(error, "open file") +"event:original":seq(error, "open file") ``` See also: @@ -777,7 +777,7 @@ If the field name contains special chars, which may clash with the query syntax, For example, the following query matches `event:original` field containing either `error` or `warn` substrings: ```logsql -"event.original":re("error|warn") +"event:original":re("error|warn") ``` Performance tips: