I noticed some strange behavior with Google Analytics realtime, it seems that tracking events after tracking a page view, removes the page view entry from the real time report and reduces the number of active online users.
I have created a sandbox environment, just throw in a google account number, click the Pageview link to send a pageview through then click on the Event link to send an event through. You should be able to notice the behavior described above, unless I got something wrong.
Here is the code:
<html>
<head>
<script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script>
</head>
<body>
<a href="#" onclick="trackPageView('/test');">Pageview</a>
<a href="#" onclick="trackEvent('testcategory', 'testaction');">Event</a>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
function trackPageView(url) {
_gaq.push(['_trackPageview', url]);
}
function trackEvent(c, a) {
_gaq.push(['_trackEvent', c, a]);
}
</script>
</body>
</html>
Not sure whether this is the desired/declared behavior, but it doesn't make a lot of sense since it prevents GA users from understanding how many active users are really online.
Will appreciate your thoughts and feedback.