Compartir a través de


Consultas para la tabla CIEventsOperational

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 para 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 para 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