Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
실패한 작업
실패한 응답 코드를 반환한 작업 목록을 검색합니다.
StorageCacheOperationEvents
| where ResponseCode < 200 or ResponseCode >= 300
| sort by TimeGenerated desc
| take 100
프라이밍 작업 실패
실패한 초기화 작업 목록을 검색합니다.
StorageCacheOperationEvents
| where OperationName contains "Priming"
| where ResultType == "Failed"
| project TimeGenerated, OperationName, PrimingJobName, ResultDescription, _ResourceId, CorrelationId, Location
| sort by TimeGenerated desc
| take 100
완료된 장기 실행 비동기 작업
완료된 장기 실행 작업 목록을 검색합니다.
StorageCacheOperationEvents
| where ResponseCode == 201 or ResponseCode == 202
| where ResultType == "Succeeded"
| sort by TimeGenerated desc
| take 100