Zapytania dotyczące tabeli CIEventsAudit
Aby uzyskać informacje na temat korzystania z tych zapytań w witrynie Azure Portal, zobacz Samouczek usługi Log Analytics. Aby zapoznać się z interfejsem API REST, zobacz Zapytanie.
CIEventsAudit — wykres liniowy kodów odpowiedzi interfejsu API
Wykres liniowy przedstawiający czas trwania odpowiedzi żądań na operację.
CIEventsAudit
| summarize DurationMs = avg(DurationMs) by bin(TimeGenerated, 5m), OperationName
| render timechart
CIEventsAudit — typ wyniku ClientError
Pobiera listę żądań zdarzeń operacyjnych zakończonych z typem wyniku ClientError: kod < stanu 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.
CIEventsAudit — błąd poziomu zabezpieczeń
Pobiera listę żądań interfejsu API zakończonych z poziomem ważności błędu.
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.
CIEvents — wszystkie zdarzenia dla określonego identyfikatora korelacji
Pobiera listę wszystkich zdarzeń żądania dla określonego identyfikatora korelacji
union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100
CIEventsAudit — wszystkie zdarzenia dla określonego identyfikatora wystąpienia
Pobiera listę żądań zdarzeń interfejsu API dla określonego identyfikatora wystąpienia.
CIEventsAudit
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100