每當我嘗試在 Azure Log Analytics 中執行以下日誌分析查詢時,都會收到以下錯誤:
「where」運算子:無法解析名為「SecurityEvent」的表或清單達式
我認為這是因為我需要啟用SecurityEvent
但Log Analytics
我不確定。我想知道是否有人可以提供指導;
SecurityEvent
| where AccountType == "User" and EventID == 4625 and TimeGenerated > ago(6h)
| summarize IPCount = dcount(IpAddress), makeset(IpAddress) by Account
| where IPCount > 5
| sort by IPCount desc