Sdílet prostřednictvím


Dotazy na tabulku TSIIngress

Zobrazit chyby připojení ke zdroji událostí

Načte posledních 100 protokolů týkajících se selhání připojení ke zdroji událostí a shrne je a zobrazí čas, kdy se protokol vygeneroval (TimeGenerated), popis vysoké úrovně (ResultDescription), zprávu obsahující podrobnosti o tom, co se stalo a jak ji opravit (Message) a aktuální konfiguraci zdroje událostí (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 nejnovějších protokolů příchozího přenosu dat

Zobrazuje posledních deset protokolů chyb v kategorii Příchozí přenos dat. To je užitečné při seznámení se schématem 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

Zobrazit chyby deserializace

Načte nejnovějších 100 protokolů chyb ze selhání pro deserializaci telemetrických zpráv a shrnuje je, aby se zobrazil čas, kdy se protokol vygeneroval (TimeGenerated), popis vysoké úrovně (ResultDescription) a zprávu s chybou deserializace (Message).

//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