Hi, I am trying to do the following:
1 - Search an index;
2 - For each result, search for matches in lookup table 1, based on the timestamp, in 1 hour bins.
For example:
Step 1 - [base search] | eval Period=day + ' - ' + hour
Result:
User Period
User1 Monday - 11
User2 Monday - 12
User3 Monday - 09
Step 2 - Match each user and period against a lookup and populate a list (can be multi-value) with hits
User Period Hits
User1 Monday - 11 No hits
User2 Monday - 12 05/02/18 12:02:45
05/02/18 12:44:13
User3 Monday - 09 05/02/18 09:28:15
How can I achieve this? The lookup table has only User and a Timestamp, the 'Period' field is calculated. How can I do the "...For each result on Step1, search the lookup table, and if hits found, list it alongside the row ...
Not sure if this is clear enough ...
Thank you!
... View more