ACSCallSummaryUpdates 表的查询

有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询

呼叫持续时间百分位数

计算平均通话持续时间(以秒为单位),以及 50%、90% 和 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)