Mobile app version of vmapp.org
Login or Join
Goswami781

: How to process gtag events in Google Analytics interface? I am developing a landing page for a chrome extension. So I'd like to set some goals to track clicks to installation button, installation

@Goswami781

Posted in: #Analytics #ClickTracking #GoogleAnalytics

I am developing a landing page for a chrome extension. So I'd like to set some goals to track clicks to installation button, installation events, etc.

According to the docs, I created few events

// Click to the top install btn
gtag('event', 'install', {
'event_label': 'click_top'
});

// Successful instalation
gtag('event', 'install', {
'event_label': 'install_success'
});


(I can see via network panel that these action runs correct)

In the next step, I configured the goals catching in GA interface


action: install
label: click_top




Problem:
But even after that I still have conversion rate 0% (I test it on myself).
My questions are:


Did I set it wrong?
Is that possible that GA does not process my own clicks?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sue5673885

Assuming that gtag is the tracker object based on event tracking in Google Analytics, I can see that "install" should is the category and not action.

In the screenshot where you are defining the goal, you are checking against action. Just change that and it should work. Another way of checking this is in your Google Analytics account, go to Behavior > Top Events and see if you have events falling under the "install" category.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme