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.