Abfragen für die TABELLE AFSAuditLogs
Informationen zur Verwendung dieser Abfragen im Azure-Portal finden Sie im Log Analytics-Lernprogramm. Informationen zur REST-API finden Sie unter "Abfrage".
Aggregatoperationsabfrage
Listet alle UnsuspendAmlFilesystem-Anforderungen für eine Zeitdauer auf.
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
Abfrage nicht autorisierter Anforderungen
Anzahl der fehlgeschlagenen AMLFilesystems-Anforderungen aufgrund eines nicht zugeordneten Zugriffs.
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