Reputation: 4264
I am looking at my sites data in Google Analytics and notice under browser version that no data appears under internet explorer v11. But if I look at Mozilla that is getting data for v 11. It seems as though all IE 11 data is coming through under Mozilla rather than Internet Explorer. Is there anything that can be done as a user here or do we just have to wait for Google to adjust?
Upvotes: 7
Views: 2772
Reputation: 1019
This has been fixed in Google Analytics as of Wednesday 18th December 2013.
Upvotes: 2
Reputation: 2383
AFAIK, There is no API to specify the user agent in the client SDKs for Android, IOS and web.
To work around this for now, You could detect the browser and use a custom dimension to track IE11 usage.
Simply use:
// Code to detect IE11
if (isIE11) {
ga('set', 'dimension1': 'IE11');
}
Upvotes: 0