SentinelAudit テーブルのクエリ

関連する Sentinel リソース Office365-Sharepoint 更新が失敗した場合の監査ログを、呼び出し元名とワークスペース ID でオプションのフィルターで表示します。

SentinelAudit
//| where WorkspaceId == "<WorkspaceId>"  // to filter on a specific WorspaceId, uncomment this line
| extend CallerName = tostring(ExtendedProperties.CallerName)
// | where CallerName startswith "<userName>" // to to filter on a specific user, uncomment this line
| where Status == "Failure"
| where SentinelResourceName has "Office365-Sharepoint"
| limit 100