Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
대부분의 일반 오류
지난 3일 동안 가장 일반적인 오류 10개가 나열됩니다.
StorageBlobLogs
| where TimeGenerated > ago(3d) and StatusText !contains "Success"
| summarize count() by StatusText
| top 10 by count_ desc
대부분의 오류를 일으키는 작업
지난 3일 동안 가장 많은 오류를 발생시키는 상위 10개 작업을 나열합니다.
StorageBlobLogs
| where TimeGenerated > ago(3d) and StatusText !contains "Success"
| summarize count() by OperationName
| top 10 by count_ desc
대기 시간이 가장 높은 작업
지난 3일 동안 종단 간 대기 시간이 가장 긴 상위 10개 작업을 나열합니다.
StorageBlobLogs
| where TimeGenerated > ago(3d)
| top 10 by DurationMs desc
| project TimeGenerated, OperationName, DurationMs, ServerLatencyMs, ClientLatencyMs = DurationMs - ServerLatencyMs
서버 측 제한 조치를 초래하는 작업
지난 3일 동안 서버 측 제한 오류를 발생시킨 모든 작업을 나열합니다.
// To create an alert for this query, click '+ New alert rule'
StorageBlobLogs
| where TimeGenerated > ago(3d) and StatusText contains "ServerBusy"
| project TimeGenerated, OperationName, StatusCode, StatusText, _ResourceId
익명 요청 표시
지난 3일 동안 익명으로 액세스할 수 있는 모든 요청을 나열합니다.
// To create an alert for this query, click '+ New alert rule'
StorageBlobLogs
| where TimeGenerated > ago(3d) and AuthenticationType == "Anonymous"
| project TimeGenerated, OperationName, AuthenticationType, Uri, _ResourceId
빈번한 작업 차트
지난 3일 동안 사용된 작업의 원형 차트입니다.
StorageBlobLogs
| where TimeGenerated > ago(3d)
| summarize count() by OperationName
| sort by count_ desc
| render piechart