Consultas para a tabela TSIIngress
Para obter informações sobre como usar essas consultas no portal do Azure, consulte o tutorial do Log Analytics. Para a API REST, consulte Consulta.
Mostrar erros de conexão de origem de evento
Recupera os 100 logs mais recentes referentes a falhas de conexão de origem de evento e os resume para exibir a hora em que o log foi gerado (TimeGenerated), uma descrição de alto nível (ResultDescription), uma mensagem contendo detalhes sobre o que deu errado e como corrigi-lo (Message) e a configuração atual da fonte do evento (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 logs de entrada mais recentes
Mostra os dez logs de erro mais recentes na categoria Ingresso. Isso é útil ao se familiarizar com o esquema 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
Mostrar erros de desserialização
Recupera os 100 logs de erro mais recentes de falhas para desserializar a(s) mensagem(ões) de telemetria e os resume para exibir a hora em que o log foi gerado (TimeGenerated), uma descrição de alto nível (ResultDescription) e uma mensagem com o erro de desserialização (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