Hi all,
I try to get the values of a kv-plugin produces Key-Value Hashlist parameter to process it by the fingerprint-plugin. So here are my filter code and the result.
filter {
kv {
source => "uriparam"
field_split => "=&"
target => "uriparams"
}
json_encode {
source => "uriparams"
}
json {
source => "uriparams"
target => "test"
}
}
Result in:
"test" => {
"key1" => "var1",
"key2" => "var2"
},
"uriparams" => "{\"key1\":\"var1\",\"key2\":\"var2\"}"
How can I get all Values from the Hashlist or the Json-String to process all of them by the fingerprint-plugin to produces Hashed Values instead of human readable ones?
I could'nt find a solution for that usecase.