Geo map display US only?
I built a map to show some IP tracking for our internal app, but I only care about the IPs from the continental US. Is there a way to write the query to only display US only?
-
Hi Will- you can add a WHERE clause using either the country_code or country_name after the lookup: | count by src_ip | lookup latitude, longitude, country_code, country_name from geo://default on ip = src_ip //| where country_code="US" //option 1 | where country_name="United States" //option 2
Please sign in to leave a comment.
Comments
1 comment