共用方式為


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)