Hi everyone,
I have a data table with two columns: destination_ip and location.
-
The destination IP column contains values in CIDR format.
-
The location column contains strings (e.g., country names).
I want to run a search/query where I filter results for location to a specific country (e.g., Italy) from the query directly.
What’s the best way to fetch the string value (location) from the data table based on the IP, so I can filter traffic for a country?
Thanks in advance for your help!