Frågor för TSIIngress-tabellen
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Visa anslutningsfel för händelsekälla
Hämtar de senaste 100 loggarna som rör anslutningsfel för händelsekälla och sammanfattar dem för att visa den tid då loggen genererades (TimeGenerated), en beskrivning på hög nivå (ResultDescription), ett meddelande med information om vad som gick fel och hur du åtgärdar den (meddelande) och händelsekällans aktuella konfiguration (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 senaste inkommande loggar
Visar de senaste tio felloggarna i kategorin Ingress. Detta är användbart när du bekantar dig med TSIIngress-schemat.
//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
Visa deserialiseringsfel
Hämtar de senaste 100 felloggarna från fel vid deserialisering av telemetrimeddelanden och sammanfattar dem för att visa den tid då loggen genererades (TimeGenerated), en beskrivning på hög nivå (ResultDescription) och ett meddelande med deserialiseringsfelet (Meddelande).
//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