问题
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