Hello,
I have created a join field using below query,
PUT test_corr
{
"mappings": {
"properties": {
"my_id": {
"type": "keyword"
},
"my_join_field": {
"type": "join",
"relations": {
"indicators": "indicator"
}
}
}
}
}
Over the same index I have ingested two sets of data via logstash,
event1: indicators:139.23.45.67 actionn:success
event2: indicator:139.23.45.67 tags:perfume,scan
My desired result should be like if I search for success I should get both event1 and event2 as a result just like SQL since indicators is a parent field of indicator and both are joined.
But I am not getting the result. Help me with your inputs.