Hello,
I have a problem extracting values using kv filter. I would like to extract the values which are seperated from key by the spaces or by the equal signs. My configuration looks like that:
kv {
include_keys => [ "key1", "key2", "key3", "key4"]
include_brackets => true
source => "message"
value_split_pattern => "\s=?\s?"
}
The key value pairs like:
key1 <value1>
key2 = value2
Are correctly extracted in the elasticsearch but the value like:
key3 = <value3>
Are not extracted at all. I expected it to be extracted without the angle brackets, as include_brackets option is set to true.
Is there some problem with the configuration I am not aware of or is it a problem with kv filter?
