Condividi tramite


Query per la tabella SentinelAudit

Visualizzare i log di controllo dei tentativi non riusciti di aggiornare Office365-Sharepoint risorse di Sentinel correlate, con un filtro facoltativo in base al nome del chiamante e all'ID dell'area di lavoro.

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