Consultas para a tabela CIEventsAudit
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.
Gráfico de linhas mostrando a duração da resposta de solicitações por operação.
CIEventsAudit
| summarize DurationMs = avg(DurationMs) by bin(TimeGenerated, 5m), OperationName
| render timechart
Obtém uma lista de solicitações de eventos operacionais concluídas com o tipo de resultado ClientError: código < de status HTTP 500.
CIEventsAudit
| where ResultType has "ClientError"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.
Obtém uma lista de solicitações de API que terminaram com o nível de gravidade do erro.
CIEventsAudit
| where Level has "Error"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.
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
Obtém uma lista de solicitações de eventos de API para um ID de instância específico.
CIEventsAudit
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100