Dotazy na tabulku ResourceManagementPublicAccessLogs
Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.
Seskupování počtu požadavků na základě IP adresy
Získejte počet žádostí o přístup k prostředku z IP adresy.
//List the IP addresses and number of calls
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CallerIpAddress
Počet aktivovaných funkcí
Spočítejte počet provedených žádostí.
// Count the number of operations.
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by CorrelationId
Volání založená na cílovém identifikátoru URI
Zobrazte počet volání na základě cílového identifikátoru 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)
Volání založená na názvu operace
Spočítejte počet žádostí provedených na základě názvu operace.
// List the operations and their number of calls from the public network
ResourceManagementPublicAccessLogs
| where Category == "PublicAccessLogs"
| summarize count() by OperationName
| order by count_
Volání založená na uživateli
Spočítejte počet požadavků provedených na základě identifikátorů objektů.
// 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_