Compartilhar 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 uma ID de correlação específica

Obtém uma lista de todas as solicitações de eventos para uma ID de correlação específica

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

CIEventsOperational – todos os eventos para uma ID de instância específica

Obtém uma lista de solicitações de eventos de API para uma ID de instância específica.

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