Hi,
I have two lookup tables created by a search with outputlookup command ,as:
table_1.csv with fields _time, A,B
table_2.csv with fields _time, A,C
I can use [|inputlookup table_1 ] and call the csv file ok.
I need to somehow join the two tables to get _time, A,B,C
NOTE: the common field in A
One fly in the ointment is that field A is not exclusive, by that I mean that it appears more than once in both tables, but within 30 seconds in both tables. So the time I need it to join is within A appearing within a 30s span of each other.
I need to join to be as one event (one line on the outputed csv file)
Then output to csv for a report which is scheduled daily.
thanks
... View more