Exclude local addresses, using the ipv4_is_private operator
This commit is contained in:
Arjun Trivedi 2022-04-26 14:22:02 +05:30 коммит произвёл GitHub
Родитель c91a3881e5
Коммит d1c6d1506b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,8 @@ query: |
let lookback_period = (
W3CIISLog
| where TimeGenerated between (lookback .. starttime)
| where not(ipv4_is_private(cIP)) and cIP != "127.0.0.1"
//Exclude local addresses, using the ipv4_is_private operator
| where ipv4_is_private(cIP) == false and cIP !startswith "fe80" and cIP !startswith "::" and cIP !startswith "127."
| summarize count() by cIP, csUserAgent
| project cIP, csUserAgent
);