对 MNFSystemStateMessageUpdates 表的查询

查找 Syslog 中的所有错误

来自设备的 Syslog 将报告消息严重性代码。 此查询筛选 Syslog 中的所有错误消息。

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