ChaosStudioExperimentEventLogs 테이블에 대한 쿼리

실패한 실험 실행

실패한 실험 실행을 나열합니다.

ChaosStudioExperimentEventLogs
| where Status == 'Failed' and SpanType == 'Experiment'
| sort by TimeGenerated desc

마지막 실험 실행의 실험 이벤트

마지막 실험 실행에서 실험 이벤트를 나열합니다.

ChaosStudioExperimentEventLogs
| lookup kind=inner (
    ChaosStudioExperimentEventLogs
    | top 1 by TimeGenerated desc
    | project CorrelationId
) on CorrelationId
| order by TimeGenerated asc