共用方式為


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