TSIIngress 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
이벤트 원본 연결 오류 표시
이벤트 원본 연결 오류와 관련된 최근 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