Query per la tabella CIEventsOperational
Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.
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 istanza specifico
Ottiene un elenco di richieste di eventi API per un ID istanza specifico.
CIEventsOperational
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100