StorageCacheOperationEvents 테이블에 대한 쿼리

실패한 작업

실패한 응답 코드를 반환한 작업 목록을 검색합니다.

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