Fixing join order for efficiency

This commit is contained in:
Shain Wray (MSTIC) 2019-05-21 06:59:45 -07:00
Родитель eba87ba0a9
Коммит d51f4366cc
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -30,8 +30,8 @@ let AllSecEvents = SecurityEvent
| where Process !in~ ("conhost.exe")
| project Computer, Process;
// Removing noisy process from full list
let Include = AllSecEvents | join kind= anti (
Exclude
let Include = Exclude | join kind= rightanti (
AllSecEvents
) on Process;
// Identifying prevalence for a given process in the environment
let DCwPC = Include