if I have this log message:
key1=foo
key2=bar
key3=foo bar
How can I use kv filters to represent the above as:
"key1" => "foo",
"key2" => "bar",
"key3" => "foo bar"
As if I change the space delimeter it seems to get confused, quite rightly too, as the kv's are split between spaces
I am only concerned with values having arbitrary spaces and not keys. Help!
