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