javascript - Google Analytics: Events sent, but not showing up in reports -
i sending events google analytics via ga() function:
ga('send', { 'hittype': 'event', 'eventcategory': 'article', 'eventaction': 'purchase', 'eventlabel': window.location.href.split('?')[0], 'eventvalue': r.data.price, 'usebeacon': true, 'hitcallback': function() { googlesent = true; } });
the callback get's executed properly, chrome analytics debuger shows events being sent google analytics. nothing showing – neither in realtime reports nor in regular reports.
any ideas can cause particular problem?
thanks everyone, today figure out real issue behind behavior was:
eventvalue float, has integer, wasn't count on analytics servers. that's all.
Comments
Post a Comment