Share via


MNFDeviceUpdates tablosu için sorgular

Değerin etkin olduğu tüm girişleri bulma

Bileşen durumu güncelleştirme olayları cihazlardan yansıtılır. Bu sorgu, değerin etkin olduğu tüm günlükleri listeler.

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

Değerin yukarı olduğu tüm girişleri bulma

Arabirim durumu güncelleştirmeleri cihazlardan yansıtılır. Bu sorgu, değerin olduğu tüm günlükleri listeler.

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

VxlanVlanToVniVlan türündeki tüm olayları bulma

Arabirim vxlan güncelleştirme olayları cihazlardan yansıtılır. Bu sorgu, olayların VxlanVlanToVniVlan türünde olduğu tüm günlükleri listeler.

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

afisafiname değerinin L2VPN_EVPN türünde olmadığı tüm girişleri bulun

BgP iletişimi sırasında yönlendiriciler arasında gerçekleşen ağ örneği komşu güncelleştirmeleri afisafiname türleriyle listelenir. Bu sorgu, afisafiname'in L2VPN_EVPN türünde olmadığı günlükleri filtreleme sorgusudur.

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

Ağ örneği adının workload-mgmt türünde olduğu tüm girişleri bulma

Cihazdan gelen ağ örneği güncelleştirme olayları burada farklı örnek adıyla bildirilir. Bu sorgu, workload-mgmt türünün tüm ağ örneklerini filtreler.

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