I'd like to use the item preprocessing to capture a certain string from a eventlog.
How can I add this capture group to my trigger name?
Example:
. Should result in a trigger name that contains: task updating application xyz.
Regex:
How can I add this capture group to my trigger name?
Example:
task "updating application xyz"
Regex:
Code:
task\s+"([^"]+)"
Comment