다음을 통해 공유


ResourceManagementPublicAccessLogs 테이블에 대한 쿼리

Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.

IP 주소를 기반으로 하는 요청의 그룹 번호

IP 주소에서 리소스에 액세스하는 요청 수를 가져옵니다.

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

트리거된 opertions 수

요청 수를 계산합니다.

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