StorageCacheWarningEvents 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
作用中警告事件
擷取尚未清除的警告事件清單。
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