استعلامات جدول ResourceManagementPublicAccessLogs

للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.

مجموعة عدد الطلبات استنادا إلى عنوان 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_