Hello,
how can i get dissect to create a structure with subfields?
dissect {
mapping => {
"message" => "%{test.subfield}.%{test.subfield2}"
}
}
I would expect so get some output like:
test => {
"subfield" => "somevalue",
"subfield2" => "anothervalue"
}
I tried test.subfield, because grok accpets it this way, but it appears to be different in dissect.
The actual output looks like
"test.subfield" => "somevalue",
"test.subfield2" => "anothervalue"
I hope you can help me out.