Queries for the SucceededIngestion table

Succeeded ingestions

How many succeeded ingestions accrued (per database, table).

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

Succeeded ingestions timechart

How many succeeded ingestions accrued (timechart).

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