Dotazy na tabulku TSIIngress

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Zobrazení chyb připojení ke zdroji událostí

Načte nejnovějších 100 protokolů souvisejících se selháním připojení ke zdroji událostí a shrnuje je, aby se zobrazil čas, kdy se protokol vygeneroval (TimeGenerated), popis vysoké úrovně (ResultDescription), podrobnosti o tom, co se nepovedlo, a jak ho opravit (Zpráva) 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 z chyb k deserializaci zpráv telemetrie a shrnuje je, aby se zobrazil čas generování protokolu (TimeGenerated), popis vysoké úrovně (ResultDescription) a zpráva s chybou deserializace (Zpráva).

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