مشاركة عبر


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

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

البحث عن كافة الإدخالات حيث تكون القيمة نشطة

يتم عرض أحداث تحديثات حالة المكونات من الأجهزة. سيسرد هذا الاستعلام جميع السجلات حيث تكون القيمة نشطة.

MNFDeviceUpdates
| where EventCategory == "ComponentStateUpdates"
| where Properties has "ACTIVE"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100

البحث عن جميع الإدخالات حيث تكون القيمة لأعلى

يتم عرض تحديثات حالة الواجهة من الأجهزة. سيسرد هذا الاستعلام جميع السجلات حيث تكون القيمة لأعلى.

MNFDeviceUpdates
| where EventCategory == "InterfaceStateUpdates"
| where Properties !has "DOWN"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100

البحث عن جميع الأحداث من نوع VxlanVlanToVniVlan

يتم عرض أحداث تحديثات واجهة vxlan من الأجهزة. سيسرد هذا الاستعلام جميع السجلات حيث تكون الأحداث من نوع VxlanVlanToVniVlan.

MNFDeviceUpdates
| where EventCategory == "InterfaceVxlanUpdates"
| where Properties has "VxlanVlanToVniVlan"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100

ابحث عن جميع الإدخالات حيث لا يكون afisafiname من النوع L2VPN_EVPN

يتم سرد تحديثات جار مثيل الشبكة التي حدثت بين أجهزة التوجيه أثناء اتصال BGP بأنواع من afisafiname. هذا هو الاستعلام لتصفية السجلات حيث afisafiname ليس من النوع L2VPN_EVPN.

MNFDeviceUpdates
| where EventCategory == "NetworkInstanceBgpNeighborUpdates"
| where Properties !has "L2VPN_EVPN"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100

ابحث عن جميع الإدخالات حيث يكون اسم مثيل الشبكة من نوع workload-mgmt

سيتم الإبلاغ عن أحداث تحديث مثيل الشبكة من الجهاز هنا باسم مثيل مختلف. يقوم هذا الاستعلام بتصفية كافة مثيلات الشبكة من نوع workload-mgmt.

MNFDeviceUpdates
| where EventCategory == "NetworkInstanceUpdates"
| where Properties has "WORKLOAD-MGMT"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100