Hi Team,
I am using multiple grok filter to capture specific patterns from the log file.Now i want to concatenate one of the filed of first grok filter with one filed of second grok filter.
mutate {
add_field => ["field3", "%{field1} %{field2}"]
}
My doubt is that :
- While doing this do i have to put the check of Path as well, so that mutate should add filed of same file(Path).
- Logstash excute all filters/configuration file wise file or it parse multiple files at a time?
Thanks