In Azure Application Insights I grouped traces entries per InvocationId to trace parallel calls of an Azure Function.
traces
| where timestamp between (todatetime('2022-06-29T21:00:00Z')..todatetime('2022-06-29T22:00:00Z'))
| where tostring(customDimensions.InvocationId) <> ""
| summarize StartedAt=min(timestamp), FinishedAt=max(timestamp),
Succeeded=max(severityLevel)==1
by operation_Id, tostring(customDimensions.InvocationId)
Based on the Kusto query above, I want to create a chart, which displays the number of parallel runs over time. While I looked into Window functions and the make_series operator, I found no solution. I want to render a timechart, which shows per minute, how many invocations are running in parallel, e.g. countif(currentMinute? between (StartedAt..FinishedAt))
How can I produce the desired chart?

