Hello!
I'm trying to parse CheckPoint log which contains duplicated keys but with different values.
For example ... match_id:"555"; match_id:"777"; ...
When I use kv plugin
kv {
source => "message"
field_split => ";"
value_split => ":"
trim_key => " "
}
I get something like match_id: 555, 777
Is it possible to get result as
match_id.1: 555
match_id.2: 777
and then rename these fields to
match.id.1: 555
match.id.2: 777
?
Thank you 