Hi,
I currently have a filter with nine "or" statements that look for a few different strings in log messages, then applies a tag. I tried a regex similar to this, but it wasn't matching on anything:
if "(foo|bar|foobar)" in [message] {
mutate {
add_tag => "mytag" }
}
The only way I could get it to work is breaking them into multiple "or"s but I'm sure it's just me being an idiot and not doing something right. Any help would be GREATLY appreciated!
Thanks!