استعلامات لجدول TSIIngress

للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.

إظهار أخطاء اتصال مصدر الحدث

استرداد أحدث 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 سجلات دخول

يعرض أحدث عشرة سجلات خطأ في فئة الدخول. هذا مفيد عند التعرف على مخطط 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