Share via


Query per la tabella StorageCacheOperationEvents

Operazione non riuscita

Recupera un elenco di operazioni che ha restituito un codice di risposta non riuscito.

StorageCacheOperationEvents
| where ResponseCode < 200 or ResponseCode >= 300
| sort by TimeGenerated desc
| take 100

Processo di priming non riuscito

Recupera un elenco di processi di priming non riusciti.

StorageCacheOperationEvents
| where OperationName contains "Priming"
| where ResultType == "Failed"
| project  TimeGenerated, OperationName, PrimingJobName, ResultDescription, _ResourceId, CorrelationId, Location
| sort by TimeGenerated desc
| take 100

Operazioni asincrone con esecuzione prolungata completate

Recupera un elenco di operazioni a esecuzione prolungata completate.

StorageCacheOperationEvents
| where ResponseCode == 201 or ResponseCode == 202
| where ResultType == "Succeeded" 
| sort by TimeGenerated desc
| take 100