Condividi tramite


Query sulla tabella StorageCacheOperationEvents

Per informazioni sull'uso di queste query nel portale di Azure, vedere l'esercitazione su Log Analytics. Per l'API REST, vedere Query.

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 dei lavori di priming falliti.

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 lungo termine completate.

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