up vote 4 down vote favorite
2
share [g+] share [fb]

What is the difference between the two? I have an Ajax heavy site and I'm not sure which one would be more appropriate to use for tracking requests.

link|improve this question

2  
I think the key distinction can be found by thinking about how they are classified in GA. Events are under Content, so they should reflect content interactions. Custom variables are under Visitors, and are a way to classify users on the fly. (The technical difference, as to how they are called, is somewhat irrelevant. ) – yahelc Jul 24 '10 at 12:49
feedback

2 Answers

up vote 2 down vote accepted

Event tracking is most suitable for tracking events in an application that don't necessarily cross page boundaries, such as actions implemented as Ajax calls.

Page level custom variables can be used to record user interactions, however the number of page level custom variables is limited to 5 per page. All custom variables must be defined before _trackPageview() has been called. I find session and visitor level custom variables more useful for recording extra information about a visitor such as demographics or anonymous vs logged in visits, which you can use to segment visitors.

link|improve this answer
When using custom variables do you call the _trackPageView() method manually or is this handled by Google automatically? – chobo Jul 24 '10 at 17:09
1  
The _trackPageView method is included in the piece of code that Google gives you to copy and paste into each page. As long as your code calls _setCustomVar before the Google code snippet, it should work. – donalmacanri Jul 25 '10 at 11:33
feedback

Event Tracking would probably be better suited to AJAX interactions. Custom variables get set, then posted after ._trackPageview() is called. Event tracking can be used after you page has loaded and called ._trackPageview(), and then your user performs actions that may not result in a new page view, like AJAX calls.

link|improve this answer
So custom variables can not be called after the page has loaded, whereas event tracking can be? – chobo Jul 24 '10 at 17:07
1  
Short answer: yes. Your code would call ._setCustomVar and then ._trackPageView. You could set the custom variables to something else and then call ._trackPageView again, but this will skew your analytics numbers. – Jonathan Bates Jul 24 '10 at 17:25
Would you know any good real world examples where one person would use custom variables? I don't quite get the purpose for them. Thanks – chobo Jul 24 '10 at 19:45
feedback

Your Answer

 
or
required, but never shown

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