共用方式為


MNFSystemStateMessageUpdates 數據表的查詢

如需在 Azure 入口網站 使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

從 Syslog 尋找所有錯誤

來自裝置的 Syslog 將會回報訊息嚴重性代碼。 此查詢會篩選 Syslog 中的所有錯誤訊息。

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