Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics send event callback function

Tags:

I'm trying to send an event to Google Analytics after a user is registered and before he's redirected. I'm using Google Tag Manager and universal js.

First, I was trying to use the dataLayer object, as described here: developers.google

Here's what my function looked like:

//Registering new user via ajax $.ajax('/register/', {     success: function() {          //Pushing event to dataLayer         dataLayer.push({             'Category': 'Registration Process',             'event': 'Registration Submit Btn'         });          //Logging in new user and redirecting the page with a timeout         setTimeout(function(){             loginAction();         }, 500)     } }) 

The trouble is that I was receiving just about 25% of all events, all others are lost. I don't know if and when events are actually sent to Google after adding objects to the dataLayer, and I think 75% of events were not send at all.

Now I'm trying to implement another approach:

//Registering new user via ajax $.ajax('/register/', {     success: function() {          //Sending event through ga('send')         parent.ga('send', 'event', 'Registration Process', 'Registration Submit Btn');          //Logging in new user and redirecting the page with a timeout         setTimeout(function(){             loginAction();         }, 500)     } }) 

But ga('send') does not have any callback function again!

How do I make sure that an event was actually sent to Google, using the dataLayer or ga('send')?

like image 714
Prosto Trader Avatar asked May 20 '14 13:05

Prosto Trader


People also ask

How do you send an event in Google Analytics?

Send data with the event command Once you've added the global snippet to a web page, use the event command to send data to Google Analytics. For example, use the following event command to indicate that a user has signed in using their Google account: gtag('event', 'login', {'method': 'Google'});

Can I send event data from backend to Google Analytics?

Nope, measurement protocol is the only way to send tracking data to Google analytics.

What is GTAG?

The Google tag (gtag. js) is a single tag you can add to your website to use a variety of Google products and services. Instead of managing multiple tags for different Google product accounts, you can use the Google tag across your entire website and connect the tag to multiple destinations.


1 Answers

Finally got it. It's pretty complicated and not described in docs. In my case I use Google Tag Manager, so there some workarounds I had to make to get successfully fire an event and get callback.

First, we have to get ClientId, which is required with any event sent to Google servers. Actually it's kept in cookies, but Google does not recommend to take it directly from there.

Here is how Google recommends to get it, but this will not work if you are using Google Tag Manager.

 ga(function(tracker) {        var clientId = tracker.get('clientId');  }); 

Instead, you have to get ClientId from getAll method.

 var clientId = ga.getAll()[0].get('clientId'); 

After, you have to create new tracker

    ga('create', 'UA-XXX-YYY', {         'clientId': clientId     }); 

And after that we can send an event:

 ga('send', 'event', {    'eventCategory': 'YOUR Category Name', //required    'eventAction': 'YOUR Action name', //required    'eventLabel': 'YOUR Label',    'eventValue': 1,    'hitCallback': function() {        console.log('Sent!!');       //callback function     },    'hitCallbackFail' : function () {       console.log("Unable to send Google Analytics data");       //callback function    } }); 
like image 168
Prosto Trader Avatar answered Sep 25 '22 02:09

Prosto Trader