Reputation: 1030
Simple question:
Im trying to track outbound links on my homepage. Problem: I only see the events in the realtime section. Does someone know where its stored? Im storing it with the following code:
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {'hitCallback':
function () {
document.location = url;
}
});
}
Upvotes: 2
Views: 118
Reputation: 14714
As said in comments.
You can find events stored in Behavior->Events
section of the GA menu. It will take some time to show up - up to 24h
Upvotes: 1