Hello there,
i have the following Incoming data:
"ID": "1234567"
"Value": 20
I have the following documents in an Elasticsearch Index:
"ID": "1234567"
"Name": "Sensor"
"Location": "New York"
I want to join with Logstash, so that i get this Document :
"ID": "1234567"
"Name": "Sensor"
"Location": "New York"
"Value": 20
Do somebody know, how this works.
Can you do this with the Elasticsearch-Filter-Plugin?
Thanks.