Hey Everyone,
I'm trying to extract fields from an event using a somewhat similar foreign key concept/mechanism.
For the two events as below:
Event#1
{
colour=blue,
metadata_id=1234-56,
record_type=car
}
Event#2
{
material=plastic,
country_of_origin=germany
metadata_id=1234-56,
record_type=metadata
}
I would like to be able to add to Event#1 the material and country_of_origin fields so I can easily search for all blue cars made in Germany as such:
index=cars country_of_origin=germany colour=blue record_type=car
Could you kindly suggest how I could build fields using metadata_id as a foreign key in Event#1 that extracts the necessary info from Event #2 ?
Thank you!
Jean-Matthieu
... View more