Reputation: 4464
Hi I have GA (Google Analytic) code to track outbound link on a website.
Here's my code:
// this code is under jQuery on click callback
ga('send', {
hitType: 'event',
eventCategory: 'booking',
eventAction: 'click',
eventLabel: 'Jungle Book 2016',
transport: 'beacon'
});
It is recorded in Real Time > Event, but nothing listed on Behavior > Event. Do I need to wait for few hours? Or is there something wrong with the code?
Thanks
Upvotes: 1
Views: 107
Reputation: 4464
There's 24 hour delay before the event is registered in Behavior.
You can always check whether your code is working or not via Real Time > Events. If it shows up there, it will be registered in Behavior > Events.
Upvotes: 1