Kueri untuk tabel MNFDeviceUpdates
Untuk informasi tentang menggunakan kueri ini di portal Azure, lihat tutorial Analitik Log. Untuk REST API, lihat Kueri.
Temukan semua entri di mana nilai aktif
Peristiwa pembaruan status komponen diproyeksikan dari perangkat. Kueri ini akan mencantumkan semua log tempat nilai aktif.
MNFDeviceUpdates
| where EventCategory == "ComponentStateUpdates"
| where Properties has "ACTIVE"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100
Temukan semua entri tempat nilai naik
Pembaruan status antarmuka diproyeksikan dari perangkat. Kueri ini akan mencantumkan semua log tempat nilai berada.
MNFDeviceUpdates
| where EventCategory == "InterfaceStateUpdates"
| where Properties !has "DOWN"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100
Temukan semua peristiwa jenis VxlanVlanToVniVlan
Peristiwa pembaruan vxlan antarmuka diproyeksikan dari perangkat. Kueri ini akan mencantumkan semua log di mana peristiwa berjenis VxlanVlanToVniVlan.
MNFDeviceUpdates
| where EventCategory == "InterfaceVxlanUpdates"
| where Properties has "VxlanVlanToVniVlan"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100
Temukan semua entri di mana afisafiname bukan tipe L2VPN_EVPN
Pembaruan tetangga instans jaringan yang terjadi antara router selama komunikasi BGP tercantum dengan jenis afisafiname. Ini adalah kueri untuk memfilter log di mana afisafiname bukan dari jenis L2VPN_EVPN.
MNFDeviceUpdates
| where EventCategory == "NetworkInstanceBgpNeighborUpdates"
| where Properties !has "L2VPN_EVPN"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100
Temukan semua entri di mana nama instans jaringan adalah jenis workload-mgmt
Peristiwa pembaruan instans jaringan dari perangkat akan dilaporkan di sini dengan nama instans yang berbeda. Kueri ini memfilter semua instans jaringan jenis workload-mgmt.
MNFDeviceUpdates
| where EventCategory == "NetworkInstanceUpdates"
| where Properties has "WORKLOAD-MGMT"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100