How does one associate Google Analytics with a particular authenticated user? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:42:43Z http://stackoverflow.com/feeds/question/584823 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/584823/how-does-one-associate-google-analytics-with-a-particular-authenticated-user 1 How does one associate Google Analytics with a particular authenticated user? Jason 2009-02-25T05:36:16Z 2009-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#584848 0 Answer by mezoid for How does one associate Google Analytics with a particular authenticated user? mezoid 2009-02-25T05:47:18Z 2009-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#585010 2 Answer by Stobor for How does one associate Google Analytics with a particular authenticated user? Stobor 2009-02-25T07:07:43Z 2009-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>