Dotazy na tabulku StorageCacheOperationEvents
Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.
Neúspěšná operace
Načte seznam operací, které vrátily kód neúspěšné odpovědi.
StorageCacheOperationEvents
| where ResponseCode < 200 or ResponseCode >= 300
| sort by TimeGenerated desc
| take 100
Neúspěšná úloha naprimování
Načte seznam neúspěšných úloh připrimování.
StorageCacheOperationEvents
| where OperationName contains "Priming"
| where ResultType == "Failed"
| project TimeGenerated, OperationName, PrimingJobName, ResultDescription, _ResourceId, CorrelationId, Location
| sort by TimeGenerated desc
| take 100
Dokončené dlouhotrvající asynchronní operace
Načte seznam dlouhotrvajících operací, které se dokončily.
StorageCacheOperationEvents
| where ResponseCode == 201 or ResponseCode == 202
| where ResultType == "Succeeded"
| sort by TimeGenerated desc
| take 100