Condividi tramite


Query relative alla tabella StorageCacheWarningEvents

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

Eventi di avviso attivi

Recupera un elenco di eventi di avviso che non sono stati cancellati.

StorageCacheWarningEvents
| where State == "Active"
| project TimeGenerated, CorrelationId, Description, _ResourceId, State
| join kind=leftanti (StorageCacheWarningEvents
    | where State == "Cleared"
        | project TimeGenerated, CorrelationId, Description, _ResourceId, State)
    on CorrelationId
| project TimeGenerated, CorrelationId, Description, _ResourceId, State
| take 100