共用方式為


成功擷取數據表的查詢

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

成功擷取

累算成功擷取次數(每個資料庫,數據表)。

SucceededIngestion
| 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

成功擷取時間圖

累算成功擷取次數(時間圖)。

SucceededIngestion 
| summarize count() by bin(TimeGenerated, 1h) 
| render timechart