SucceededIngestion テーブルのクエリ
Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。
成功したインジェスト
発生した成功したインジェストの数 (データベース、テーブルごと)。
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