Запросы к таблице 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