Query's voor de AFSAuditLogs-tabel
Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.
Query voor statistische bewerkingen
Vermeld alle UnsuspendAmlFilesystem-aanvragen voor een tijdsduur van een givein.
AFSAuditLogs
// The OperationName below can be replaced by obtain other operations such as "RebootAmlFilesystemNode" or "AmlFSRefreshHSMToken".
| where OperationName has "UnsuspendAmlFilesystem"
| project TimeGenerated, _ResourceId, ActivityId, ResultSignature, ResultDescription, Location
| sort by TimeGenerated asc
| limit 100
Query voor niet-geautoriseerde aanvragen
Aantal mislukte AMLFilesystems-aanvragen vanwege niet-genatuurde toegang.
AFSAuditLogs
// 401 below could be replaced by other result signatures to obtain different operation results.
// For example, 'ResultSignature == 202' to obtain accepted requests.
| where ResultSignature == 401
| summarize count() by _ResourceId, OperationName