Azure Web 应用程序应用程序见解查询 Operation/Dependency 时间、持续时间和一段时间内的计数

Azure web app application insights query for Operation/Dependency time, Duration and count over a period

我正在寻找 Operation/Dependency 名称、时间(平均)、持续时间和一段时期内的计数(比如过去一周)

dependencies
 | where timestamp > startofweek(now()) 
 | summarize count() by name 
 |order by name asc 
 | join kind= inner (
 dependencies
 | where timestamp > startofweek(now()) 
 | summarize avg(duration) by name
 |order by name    
 ) on name