From 276aa58e508f9278c917ee1a4507b0ffa8a698b7 Mon Sep 17 00:00:00 2001 From: Thomas Roehl Date: Thu, 12 Dec 2024 05:35:48 +0100 Subject: [PATCH] Add link to expr syntax and fix regex matching docs --- pkg/messageProcessor/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/messageProcessor/README.md b/pkg/messageProcessor/README.md index ebce4b0..07672bf 100644 --- a/pkg/messageProcessor/README.md +++ b/pkg/messageProcessor/README.md @@ -243,7 +243,8 @@ Accessible for operations are Generally, all tags are accessible with `tag_`, `tags_` or `tags.`. Similarly for all fields with `field[s]?[_.]`. For meta information `meta[_.]` (there is no `metas[_.]`). -- Comparing strings: `==`, `!=`, `match(str, regex)` (use `%` instead of `\`!) +The [syntax of `expr`](https://expr-lang.org/docs/language-definition) is accepted with some additions: +- Comparing strings: `==`, `!=`, `str matches regex` (use `%` instead of `\`!) - Combining conditions: `&&`, `||` - Comparing numbers: `==`, `!=`, `<`, `>`, `<=`, `>=` - Test lists: ` in `