Hi Team,
I am using multiple grok to extract multiple pattern from the log file.
Below is the sample grok filters which I am using
grok {
message => {"%{NUMBER:Filed1} %{GREEDYDATA:message}" }
}
grok {
message => {"%{NUMBER:Filed1} test %{GRREDYDATA:filed2} %{GREEDYDATA:message}" }
}
Now in kibana discover page i am using below filed :
Filed1 Filed2 message
I want to show Filed1 and Filed 2 in every row. To achieve this i am trying to add Filed1 and Filed2 using mutate add_filed.But i a not able to do it.
Kindly advice how can i add filed of one grok in another grok, or how can add filed of one grok in every event.
Thanks