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 통신 중에 라우터 간에 발생한 네트워크 instance 인접 업데이트는 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

네트워크 instance 이름이 workload-mgmt 형식인 모든 항목을 찾습니다.

디바이스의 네트워크 instance 업데이트 이벤트는 다른 instance 이름으로 여기에 보고됩니다. 이 쿼리는 workload-mgmt 형식의 모든 네트워크 인스턴스를 필터링합니다.

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