Hey Everyone!
So I am very new to the elastic stack and am currently working on my first application using it. I have data that comes from different files via filebeat. They then go through logstash to parse out the fields of the document. The problem is that some messages have different data compared to each other. For example:
doc1
{
"latitute": 20
"longitude": 30
}
doc2
{
"level": "Error"
}
However, I want to visualize the data via Kibana using a map. and I need the data from Doc1 and Doc2. Is there a way to use a script to access the data from Doc1 to update Doc2? I would prefer not to create additional documents if that is possible. Thanks for the help!