Consultas para a tabela CIEventsOperational
Para obter informações sobre como usar essas consultas no portal do Azure, consulte o tutorial do Log Analytics. Para a API REST, consulte Consulta.
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.
CIEventsOperacional - 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 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 um ID de instância específico
Obtém uma lista de solicitações 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