Share via


Consultas para a tabela CIEventsOperational

CIEventsOperational - tipo de evento ApiEvent

Obtém uma lista de eventos operacionais com 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

Obtém uma lista de eventos operacionais com 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 os eventos para um ID de correlação específico

Obtém uma lista de todos os pedidos de eventos para um ID de correlação específico

union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100

CIEventsOperational - todos os eventos para um ID de instância específico

Obtém uma lista de pedidos de eventos de API para um ID de instância específico.

CIEventsOperational
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100