AppDependencies 表的查询

失败的依赖项

目前哪 5 个依赖项失败最多?

AppDependencies
| where Success == false
| summarize totalCount=sum(ItemCount) by DependencyType
| top 5 by totalCount desc