次の方法で共有


ResourceManagementPublicAccessLogs テーブルのクエリ

Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。

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_