StorageCacheWarningEvents 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 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