How does one associate Google Analytics with a particular authenticated user? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:42:43Zhttp://stackoverflow.com/feeds/question/584823http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/584823/how-does-one-associate-google-analytics-with-a-particular-authenticated-user1How does one associate Google Analytics with a particular authenticated user?Jason2009-02-25T05:36:16Z2009-02-25T07:07:43Z
<p>What method would you use to associate tracking information in Google Analytics with a particular named user?</p>
<p>I want to be able to do custom reports, and ultimately drill down on usage by user.</p>
<p><strong>EDIT</strong><br />
I was thinking that perhaps the <a href="http://code.google.com/apis/analytics/docs/eventTrackerOverview.html" rel="nofollow">EventTracking API</a> would be able to help somehow.</p>
<p>Also, referring to <a href="http://code.google.com/apis/analytics/docs/eventTrackerGuide.html" rel="nofollow">this documentation</a>.</p>
http://stackoverflow.com/questions/584823/how-does-one-associate-google-analytics-with-a-particular-authenticated-user/584848#5848480Answer by mezoid for How does one associate Google Analytics with a particular authenticated user?mezoid2009-02-25T05:47:18Z2009-02-25T05:47:18Z<p>Since Google Analytics isn't aware of users who are logged into your site you'd have to do that sort of tracking within your site's software itself. If there isn't some sort of plugin or extension out there already you'll probably have to write one yourself that keeps track of what your users do when their logged in.</p>
http://stackoverflow.com/questions/584823/how-does-one-associate-google-analytics-with-a-particular-authenticated-user/585010#5850102Answer by Stobor for How does one associate Google Analytics with a particular authenticated user?Stobor2009-02-25T07:07:43Z2009-02-25T07:07:43Z<p>You could add the user's username as a tracking/segmentation) variable...</p>
<pre><code>pageTracker._setVar(username);
</code></pre>
<p>You can only use one _setVar per page, though...</p>
<p><a href="http://www.google.com/support/analytics/bin/answer.py?answer=57045" rel="nofollow">http://www.google.com/support/analytics/bin/answer.py?answer=57045</a></p>
<p><a href="http://groups.google.com/group/analytics-help-basics/browse_thread/thread/07e29dc610050971" rel="nofollow">http://groups.google.com/group/analytics-help-basics/browse_thread/thread/07e29dc610050971</a></p>