Zapytania dotyczące tabeli TSIIngress
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.
Pokaż błędy połączenia ze źródłem zdarzeń
Pobiera najnowsze 100 dzienników odnoszących się do błędów połączenia ze źródłem zdarzeń i podsumowuje je, aby wyświetlić czas wygenerowania dziennika (TimeGenerated), ogólny opis (ResultDescription), szczegóły dotyczące tego, co poszło nie tak i jak rozwiązać problem (Komunikat) oraz bieżącą konfigurację źródła zdarzeń (EventSourceProperties).
//Retrieves the most recent 100 logs pertaining to event source connection failures and summarizes them to display the time when the log was generated (TimeGenerated), a high level description (ResultDescription), a message continaing details on what went wrong and how to fix it (Message), and your event source's current configuration (EventSourceProperties).
TSIIngress
| where OperationName == 'Microsoft.TimeSeriesInsights/environments/eventsources/ingress/connect'
| project TimeGenerated, ResultDescription, Message, tostring(EventSourceProperties)
| top 100 by TimeGenerated desc
10 najnowszych dzienników ruchu przychodzącego
Pokazuje najnowsze dziesięć dzienników błędów w kategorii Ruch przychodzący. Jest to przydatne podczas zapoznawania się ze schematem USŁUGI TSIIngress.
//Retrieves the most recent ten error logs in the Ingress category. This is helpful when getting familiar with the TSIIngress schema.
TSIIngress
| top 10 by TimeGenerated
Pokaż błędy deserializacji
Pobiera najnowsze 100 dzienników błędów z niepowodzeń do deserializacji komunikatów telemetrycznych i podsumowuje je, aby wyświetlić czas wygenerowania dziennika (TimeGenerated), ogólny opis (ResultDescription) i komunikat z błędem deserializacji (Komunikat).
//Retrieves the most recent 100 error logs from failures to deserialize telemetry message(s) and summarizes them to display the time when the log was generated (TimeGenerated), a high level description (ResultDescription), and a message with the deserialization error (Message).
TSIIngress
| where OperationName == 'Microsoft.TimeSeriesInsights/environments/eventsources/ingress/deserialize'
| project TimeGenerated, ResultDescription, Message, tostring(EventSourceProperties)
| top 100 by TimeGenerated desc