Posts

Showing posts with the label google-analytics

Sending event values to Google Analytics using Zapier

Image
Clash Royale CLAN TAG #URR8PPP Sending event values to Google Analytics using Zapier I'm using Close.io as a CRM, I want to be able to create an event on Google Analytics and record the conversion value. The purpose of this is so that I can tie a certain Google Ad to its performance. On Close.io this would be a new Opportunity created. I'm using Zapier to integrate the two platforms and it has a new Beta integration with Google Analytics. I set it up so that when a new Opportunity is created, it creates a measurement on GA with the measurement type "Event Tracking", and the category, action and label similar to the goal I created on GA. However, when I send tests to GA, it's not appearing in my acquisitions report on GA. There are fields for Customer Client ID and User ID.For customer ID there's a description that says: "This anonymously identifies a particular user, device, or browser instance. Google may ignore repeated identical measurements. The value...

Firefox version >56 I can see traffics in Real Time but not in any report or dashboard

Image
Clash Royale CLAN TAG #URR8PPP Firefox version >56 I can see traffics in Real Time but not in any report or dashboard Please find the javascript code that I am using to track the analytics for dialog.html page of my extension. var _gaq = _gaq || ; _gaq.push(['_setAccount', 'UA-********-1']); var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = 'https://ssl.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); var trackPage = function () { let request = new XMLHttpRequest(); request.open("POST", "https://www.google-analytics.com/collect", true); let message ="v=1&tid=" + "UA-**********-1" + "&cid= " + "*********" + "&aip=1" +"&ds=add-on&t=pageview&dp="+"dialog.html"+"&dt="+"TruePath-Home"; request...

Tracking #tag usage across the website

Image
Clash Royale CLAN TAG #URR8PPP Tracking #tag usage across the website I am implementing GA tracking for a big social content sharing platform, where users can use #tags for posts, comments etc. and I am looking for a way to correctly track how users use those tags across the website. Website owner wants to measure: amount of posts with certain #tags amount of #tag mentions in comments under posts (which may be related to other #tags) amount of upvotes/downvotes on posts related to certain #tags I was planning to use custom dimension "tag" and send its values whenever any tag-related action occurs, i.e. dim. value "bike" on a post where someone used a #bike tag. However there is a problem - most often actions that occur on the website are related to multiple tags simultaneously, i.e. a post with multiple tags, a pageview for one tag and a comment with another tag etc. Unfortunately, it is impossible to send multiple values for the same dimension at once. Looking for ...

Google analytics architecture: database

Image
Clash Royale CLAN TAG #URR8PPP Google analytics architecture: database Does anyone knoe the architecture behing google analytics site? I mean especially databases. (For row data/ aggregatios) Also do they pre-aggregate the traffic data? By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Removing inline onclick event tracking code and putting it in an external file

Removing inline onclick event tracking code and putting it in an external file I have many tracking codes attached to link tags (onclick="") and these are scattered throughout my page and it looks very messy. It looks like, <a href="tel:+123456789" onclick="gtag('event', 'click', { 'event_category': 'Phone', 'event_label': 'Header phone link' });">+123456789</a> I was wondering if they could all be removed and moved to an external js file to keep the page clean and readable. If so how do I do it? By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.