共用方式為


FailedIngestion 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

錯誤擷取失敗

累算的擷取失敗次數(依 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