@gcusello
If i have more values to check, you provided the below line for the query.
| append [ | inputlookup my_lookup.csv | eval count=0 | fields check_source count ]
In the CSV file i have to provide only the source or the whole line naming the column name as check_source like below with column header named as "check_source"
| append [ | makeresults | eval check_source="abcedef", count=0 | fields check_source count ]
| append [ | makeresults | eval check_source="ghijkl", count=0 | fields check_source count ]
| append [ | makeresults | eval check_source="mnopqr", count=0 | fields check_source count ]
Kindly suggest
... View more