vote up 2 vote down star
1

What method would you use to associate tracking information in Google Analytics with a particular named user?

I want to be able to do custom reports, and ultimately drill down on usage by user.

EDIT
I was thinking that perhaps the EventTracking API would be able to help somehow.

Also, referring to this documentation.

flag

2 Answers

vote up 2 vote down check

You could add the user's username as a tracking/segmentation) variable...

pageTracker._setVar(username);

You can only use one _setVar per page, though...

http://www.google.com/support/analytics/bin/answer.py?answer=57045

http://groups.google.com/group/analytics-help-basics/browse_thread/thread/07e29dc610050971

link|flag
Yes, I found this too. Did you do this successfully? – Jason Feb 25 at 15:59
No - I remembered seeing it when I was playing with getting GA set up for our environment, but we didn't end up wanting anything like that so I never got to try it. Seemed like it did what you wanted, though. – Stobor Feb 27 at 0:39
we found it more use for tracking logged in users vs not in general, they tend to use different parts of the site – ontangent May 3 at 18:41
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.