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?