次の方法で共有


MNFSystemStateMessageUpdates テーブルのクエリ

Syslog からすべてのエラーを検索する

デバイスからの Syslog は、メッセージの重大度コードで報告されます。 このクエリでは、Syslog からのすべてのエラー メッセージがフィルター処理されます。

MNFSystemStateMessageUpdates
| where Properties has "error"
| project EventName, EventCategory, DeviceId, TimeGenerated, Properties
| sort by TimeGenerated desc
| limit 100