Reverb - Allow Multiple Google Analytics IDs for Target

Summary

Add functionality to Reverb to allow use of multiple Google Analytics IDs.

Detailed Description

The Google Analytics code allows a single page to send events to multiple GA accounts. By providing multiple IDs, Google Analytics can track a single page in more than one profile. Reverb implementation of Analytics should be updated to accept multiple IDs to build the GA code in the header of each page.

Code Example

<script type="text/javascript">
var _gaq = gaq || [];
_gaq.push(['_setAccount', 'UA-12345-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['t2._setAccount', 'UA-67890-1']);
_gaq.push(['t2._trackPageview']);

Use Cases

We provide Help for several different versions of our product. Right now, each version is tracked in a separate GA profile, but we would like to also have a single “roll-up” profile that will track usage among all our Help pages to allow direct comparison within a single set of reports.


:) :)) :( ;) :\ |) X-( B)
DerekDukes   Actually Google's documentation might be better: http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html#MultipleCommands
2012-04-04 14:20:53
LiefErickson   I would also like to see this.
2013-01-15 15:24:44

Enhancements/Reverb - Add Ability to Use Multple Google Analytics IDs (last edited 2012-04-04 19:16:55 by DerekDukes)