共用方式為


ResourceManagementPublicAccessLogs 數據表的查詢

根據IP位址的要求群組數目

取得從IP位址存取資源的要求數目。

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

觸發的作業數目

計算提出的要求數目。

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

以目標 URI 為基礎的呼叫

根據目標URI繪製呼叫數目的圖表。

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

以作業名稱為基礎的呼叫

計算根據作業名稱提出的要求數目。

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

以用戶為基礎的通話

根據物件識別碼計算提出的要求數目。

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