AOIDigestion 表的查询

有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询

行汇总错误

有关未能汇总的行的所有日志。

AOIDigestion
| where Message startswith_cs "Failed to decode row"
| take 100

按源列出的失败文件汇总

将文件上传到的顶级目录(通常是 SiteId)无法汇总的文件的明细。

AOIDigestion
| where Message startswith_cs "Failed to digest file"
| parse FilePath with Source:string "/" *
| summarize count() by Source