Delen via


Query's voor de tabel ACSCallSummaryUpdates

Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.

Percentielen voor gespreksduur

Berekent de gemiddelde gespreksduur in seconden, evenals de percentielen voor gespreksduur van 50%, 90% en 99%.

ACSCallSummaryUpdates
// Get the distinct combinations of CorrelationId, CallDuration
| distinct CorrelationId, CallDuration
// Calculate average and percentiles (50%, 90%, and 99%) of call durations (in seconds)
| summarize avg(CallDuration), percentiles(CallDuration, 50, 90, 99)