Compartir a través de


Consultas para la tabla ChaosStudioExperimentEventLogs

Para obtener información sobre el uso de estas consultas en Azure Portal, consulte tutorial de Log Analytics. Para obtener la API REST, consulte Consulta.

Ejecuciones de experimentos con errores

Listar ejecuciones fallidas de experimentos.

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

Eventos del último experimento ejecutado

Enumera los eventos del último experimento realizado.

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