Skip to content

Commit cfed879

Browse files
authored
Merge pull request #107650 from rboucher/patch-17
Small change.
2 parents 77b2f4d + 5a06d01 commit cfed879

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

articles/azure-monitor/log-query/query-optimization.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ SecurityEvent
7979
| extend FilePath = tostring(Details.UserData.RuleAndFileData.FilePath)
8080
| extend FileHash = tostring(Details.UserData.RuleAndFileData.FileHash)
8181
| summarize count() by FileHash, FilePath
82+
| where FileHash != "" // No need to filter out %SYSTEM32 here as it was removed before
8283
```
8384

8485
Queries that contain [where](/azure/kusto/query/whereoperator) clauses on an evaluated column rather than on columns that are physically present in the dataset lose efficiency. Filtering on evaluated columns prevents some system optimizations when large sets of data are handled.

0 commit comments

Comments
 (0)