Hi,
Here is what my configuration looks like ...
filter {
mutate {
rename => {
"keywords" => "[tags][keywords]"
}
}
}
Essentially, I'm looking to mutate into a nested JSON under field named "tags".
Now this is leading a very weird result as follows:
"tags" => [
[0] [
[0] "keywords",
[1] "process, new, variable"
]
],
I'm guessing this could be cos perhaps logstash treats "tags" as a special keyword. In which case, how do I achieve what I want to ... have a nested JSON under "tags" field?