Condividi tramite


Query per la tabella CIEventsOperational

CIEventsOperational - Tipo di evento ApiEvent

Ottiene un elenco di eventi operativi con eventType come 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 di evento WorkflowEvent

Ottiene un elenco di eventi operativi con eventType come 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 - tutti gli eventi per un ID di correlazione specifico

Ottiene un elenco di tutte le richieste di eventi per un ID di correlazione specifico

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

CIEventsOperational - tutti gli eventi per un ID di istanza specifico

Ottiene un elenco di richieste di eventi API per un ID di istanza specifico.

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