Fixing join order for efficiency
This commit is contained in:
Родитель
eba87ba0a9
Коммит
d51f4366cc
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче