共用方式為


MNFDeviceUpdates 數據表的查詢

尋找值為使用中的所有專案

元件狀態更新事件會從裝置投影。 此查詢會列出值為使用中的所有記錄。

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