docs/VictoriaLogs/LogsQL.md: typo fixes

This commit is contained in:
Aliaksandr Valialkin 2023-06-20 00:44:59 -07:00
parent be9de2b43c
commit 7b2748e7a1
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -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: