Application Insight Analytics - Query Client Browser and Device

為{幸葍}努か 提交于 2021-02-07 18:08:59

问题


anyone knows how to query Azure App Insight to get analytics on client devices ? or OS ? I seem to be able to get good stats on Client countries but not devices


回答1:


You should have used client_CountryOrRegion in your existing queries, replace it with client_Browser Or other required data models.

Here are some queries I used to see summary on browsers..

pageViews | summarize count() by client_Browser

browserTimings | summarize avg(networkDuration), avg(processingDuration), avg(totalDuration) by name 

For more data model ref: https://docs.microsoft.com/en-us/azure/application-insights/app-insights-export-data-model




回答2:


Or try to use this one

requests
 | project client_Type, client_Browser, client_Model, client_OS
 | limit 100


来源:https://stackoverflow.com/questions/45315818/application-insight-analytics-query-client-browser-and-device

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!