MNFDeviceUpdates テーブルのクエリ

Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。

値がアクティブなすべてのエントリを検索する

コンポーネントの状態更新イベントは、デバイスから投影されます。 このクエリでは、値がアクティブなすべてのログが一覧表示されます。

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