docs(systemd-journal.plugin): correct full-text search (#19093)
Ilya Mashchenko committed
Nov 26, 2024 at 16:17 UTC
e69ac9cdb84eeea4729aa90012f084c4ff341637
1 file changed
+3
-3
src/collectors/systemd-journal.plugin/README.md
+3
-3
@@ -244,14 +244,14 @@ The plugin supports searching through all fields of log entries using text patte
244
245
**Multiple Patterns**:
246
247
-- Separate patterns with ` | ` (pipe character with spaces on both sides).
247
+- Separate patterns with `|` (pipe character).
248
- Multiple patterns are combined with OR logic.
249
-- Example: `error | warning` matches entries containing either `error` OR `warning`.
249
+- Example: `error|warning` matches entries containing either `error` OR `warning`.
250
251
**Negative Patterns**:
252
253
- Prefix pattern with `!` to exclude matching entries.
254
-- Example: `!systemd | *` matches any entry that does NOT contain `systemd`.
254
+- Example: `!systemd|*` matches any entry that does NOT contain `systemd`.
255
256
## Query performance
257