Can a filter use a lookup table?
Yes.
Example: C.Lookup(âfilename.csvâ, âhostâ).match(host)
1 UpGoat
Example, this will return true if the file has âvalue_to_lookupâ in the column âkey_columnâ:
C.Lookup('lookupfile.csv','key_column').match('value_to_lookup')
3 UpGoats