Consultas para la tabla CIEventsOperational
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.
CIEventsOperational: tipo de evento ApiEvent
Obtiene una lista de eventos operativos con eventType como APIEvent.
CIEventsOperational
| where EventType has "ApiEvent"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.
CIEventsOperational: tipo de evento WorkflowEvent
Obtiene una lista de eventos operativos con eventType como WorkflowEvent.
CIEventsOperational
| where EventType has "WorkflowEvent"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.
CIEvents: todos los eventos de un identificador de correlación específico
Obtiene una lista de todas las solicitudes de eventos para un identificador de correlación específico.
union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100
CIEventsOperational: todos los eventos de un identificador de instancia específico
Obtiene una lista de solicitudes de eventos de API para un identificador de instancia específico.
CIEventsOperational
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100