Hello All,
Regarding the Parser configuration of integration policy, if I have too many multiline pattern for each name.
Let say, I have this below for each log
| Agent Policy | Multiline Pattern | Target Namespace |
| ------------ | -------------------------------- | ---------------- |
| `dev-logs` | `^\[` | `dev` |
| `tools-logs` | `^[0-9]{4}-[0-9]{2}-[0-9]{2}` | `tools` |
| `kong-logs` | `^(?:[0-9]{1,3}\.){3}[0-9]{1,3}` | `kong` |
How do I add multiple condition for those multiline?
If example parser configuration is
# - ndjson: # target: json
# ignore_decoding_error: true
# - multiline: # type: pattern
# pattern: '^\['
# negate: true # match: after
BR