Hi, I have been using the translate plugin that works great however I have multiple fields that all reference to the one field used for the translate. So is it possible to use the translate plugin to lookup a value against a file and return multiple fields that is then loaded into ES?
Here is what I am currently using in the filter:
...
translate {
field => "Calling"
destination => "Calling_Name"
dictionary_path => "/opt/.../calling_name.yaml"
}
...
The translate file looks currently as follows:
...
"1001": "OK"
"1002": "failed"
Here is what I would like to achive:
Lookup multiple fields e.g.
translate field
...
"1001": "field1,field2,field3,..."
...
The 1001 is the reference field then return all the different field1 to field3.