Delen via


Query's voor de tabel SentinelAudit

Auditlogboeken weergeven van mislukte pogingen om Office365-Sharepoint gerelateerde Sentinel-resources bij te werken, met een optioneel filter op naam van de aanroeper en werkruimte-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