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

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -