Mobile app version of vmapp.org
Login or Join
Lengel546

: Is there a way to distinguish Analytics logs between Universal and pre-universal code? I'd like to filter the Analytics log by the version of the code who made them. The goal is to grant that

@Lengel546

Posted in: #GoogleAnalytics

I'd like to filter the Analytics log by the version of the code who made them.

The goal is to grant that all the Analytics logs id done by the new Universal version.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Lengel546

2 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

Google has documentation about the differences between classic and universal analytics code.

You can test which one is installed using JavaScript pretty easily.

if (typeof ga == 'function'){
// universal analytics
} else if (typeof _gaq != 'undefined'){
// classic analytics
}

10% popularity Vote Up Vote Down


 

@LarsenBagley505

You can use custom variables, or an annotation to indicate the change

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme