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

node.js - How to mock a third-party api calls in the backend -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -