I am using 'kv' filter in logstash like this
kv {
source => "request"
field_split => "&?"
}
I have a message like "key=value&key1=&key2=value2"
the logstash output is coming like this
"key" : "value"
"key1" : "&key2=value2"
But it should be like this
"key" : "value"
"key1" : ""
"key2" : "value2"
Can somebody suggest how can we achieve this?