Basically my query should search an index for an ip in the last 4 hours and return 1 event. Then it should left join on IP to a second index and search for results over the last 7 days. The IP i am searching exists in both indexes. Why are no results being returned? earliest=-4h latest=now() index=data1 Source_Network_Address=10.1.1.1
| head 1
| rename Source_Network Address as IP
| join type=left IP max=5
[search earliest=-7d latest=now() index=data2
| fields IP, DNS]
| table index, _time, IP, DNS
... View more