다음을 통해 공유


TSIIngress 테이블에 대한 쿼리

이벤트 원본 연결 오류 표시

이벤트 원본 연결 실패와 관련된 가장 최근 100개의 로그를 검색하고 로그가 생성된 시간(TimeGenerated), 상위 수준 설명(ResultDescription), 무엇이 잘못되었는지, 문제를 해결하는 방법(메시지) 및 이벤트 원본의 현재 구성(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개

수신 범주에서 가장 최근 10개의 오류 로그를 표시합니다. 이는 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

역직렬화 오류 표시

원격 분석 메시지를 역직렬화하는 오류에서 가장 최근의 100개 오류 로그를 검색하고 로그가 생성된 시간(TimeGenerated), 상위 수준 설명(ResultDescription) 및 역직렬화 오류(메시지)가 포함된 메시지를 표시하도록 요약합니다.

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