Share via


Requêtes pour la table SentinelAudit

Affichez les journaux d’audit des échecs de mise à jour Office365-Sharepoint ressources Sentinel associées, avec un filtre facultatif par nom d’appelant et ID d’espace de travail.

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