Queries for the AppDependencies table

Failing dependencies

Which 5 dependencies failed the most today?

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