Hi everyone,
I want to use KV filter to parse a nested message field, see below for my sample json:
  {
    "_index": "myindex",
    "_type": "doc",
    "_id": "myid",
    "_score": 5.339951,
    "_source": {
      "msg": "some msg",
      "message": "a=1, b=2, c=3, d=4"
    }
  }
And I tried using a kv filter like this
kv {
source => "[_source][message]"
value_split => "="
field_split => ",\s"
}
But this doesn't work. I also tried "_source.message", "_source.message.value" and "message" as the source, none of these work.
Any idea?
Many thanks.
Cheers,
Vincent