你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
MNFDeviceUpdates 表的查询
有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询。
查找值处于活动状态的所有条目
组件状态更新事件由设备预测。 此查询将列出值处于活动状态的所有日志。
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