Hello,
I'm trying to use the multiple grok pattern as in the documentation ( Grok filter plugin | Logstash Reference [8.1] | Elastic ) but I notice that it only handles the first two patterns.
Here is my filter :
{
grok {
match => {
"message" => [
"thing1=%{DATA:thing1},",
"thing2=%{DATA:thing2},",
"thing3=%{DATA:thing3},"
]
}
}
}
So I have two questions:
- Are the patterns independent of each other?
- What did I miss?
Thanks for your answers