我使用这个查询来显示异常:
exceptions
| where application_Version == "xyz"
| summarize count_=count(itemCount), impactedUsers=dcount(user_Id) by problemId, type, method, outerMessage, innermostMessage
| order by impactedUsers
如何查询受特定异常影响的用户百分比?
我会通过这个查询检查所有用户:
customEvents
| where application_Version == "xyz"
| summarize dcount(user_Id)