Frågor för tabellen ResourceManagementPublicAccessLogs
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Gruppera antalet begäranden baserat på IP-adressen
Hämta antalet begäranden som kommer åt resursen från en IP-adress.
//List the IP addresses and number of calls
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CallerIpAddress
Antal utlösta opertioner
Räkna antalet begäranden som har gjorts.
// Count the number of operations.
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CorrelationId
Anrop baserade på mål-URI:n
Diagram antalet anrop baserat på mål-URI:n.
// Chart the number of calls based on the target URI.
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by Uri, bin(TimeGenerated, 1m)
| render columnchart with (kind=stacked)
Anrop baserat på åtgärdsnamn
Räkna antalet begäranden som görs baserat på åtgärdsnamnet.
// List the operations and their number of calls from the public network
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by OperationName
| order by count_
Anrop baserade på användare
Räkna antalet begäranden som görs baserat på objektidentifierare.
// List the object identifiers and number of calls from each over the public network
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by ObjectIdentifier
| order by count_