对 FailedIngestion 表的查询

错误引入失败

ErrorCode) (累积的引入失败次数。

FailedIngestion 
| summarize count() by ErrorCode

引入失败的时间图

(时间图) 累积的引入失败次数。

FailedIngestion 
| summarize count() by bin(TimeGenerated, 5m) 
| render timechart 

失败的引入

群集、数据库、表、ErrorCode、状态) (累积的引入失败次数。

FailedIngestion 
| parse _ResourceId with * "providers/microsoft.kusto/clusters/" cluster_name // Get the cluster name from the ResourceId string
| summarize count() by bin(TimeGenerated, 1h), cluster_name, Database, Table, ErrorCode, FailureStatus