ResourceManagementPublicAccessLogs tablosu için sorgular

IP adresine göre grup isteği sayısı

Bir IP adresinden kaynağa erişen istek sayısını alın.

//List the IP addresses and number of calls
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CallerIpAddress 

Tetiklenen işlem sayısı

Yapılan istek sayısını sayma.

// Count the number of operations.
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CorrelationId 

Hedef URI'yi temel alan çağrılar

Hedef URI'ye göre çağrı sayısını grafiğini oluşturun.

// 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) 

İşlem adına göre çağrılar

İşlem adına göre yapılan istek sayısını sayma.

// List the operations and their number of calls from the public network
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by OperationName
| order by count_

Kullanıcıya göre aramalar

Nesne tanımlayıcılarına göre yapılan istek sayısını sayma.

// 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_