Forum Discussion
ben_loy
Sep 13, 2022Copper Contributor
Working with watchlists and ipv4_is_in_any_range() to exclude results from query
Hello! I am struggling with using watchlists as a blacklist. This is my query: let list = _GetWatchlist('blacklistedSegments')
| summarize make_list(segment);
SigninLogs
| where ipv4_is_in...
- Sep 13, 2022
This example works for me
let list = toscalar(_GetWatchlist('...........') | summarize make_list(SearchKey)); AzureActivity | where ipv4_is_in_any_range(tostring(CallerIpAddress), list)
ben_loy
Sep 13, 2022Copper Contributor
Thanks for replying.
Unfortunately Project and Distinct throw the same error.
The docs say that the method expect a dynamic array:
and make_list() returns exactly that:
Maybe there are some subtleties I miss?
Clive_Watson
Sep 13, 2022Bronze Contributor
This example works for me
let list = toscalar(_GetWatchlist('...........')
| summarize make_list(SearchKey));
AzureActivity
| where ipv4_is_in_any_range(tostring(CallerIpAddress), list)
- Come_onFeb 20, 2023Copper ContributorThis work great. Any thoughts on if I want to exclude the IP address in the watchlist from my query?
- Clive_WatsonFeb 20, 2023Bronze ContributorSomething like this (not tested)?
| where not(ipv4_is_in_any_range(tostring(CallerIpAddress), list))