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