Skip to content

Commit 5a06d01

Browse files
authored
trying to fix problem. Build failure in other PR.
https://github.com/MicrosoftDocs/azure-docs-pr/pull/107540
1 parent 1777db6 commit 5a06d01

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)