google-analytics

Google Tag Manager: Eventtracking not working

不问归期 提交于 2020-01-01 18:17:56
问题 I try to track the clicks on all mailto-links on my site using the Tag Manager, but its not working at all. Looking at the network transfer using firebug I can see that nothing is submitted to Google (and of course also nothing appears in my Analytics interface). I have bind the push to the click using jQuery (correctly loaded on my page): $(function() { $("a[href^='mailto:']").bind("click", function() { dataLayer.push({ 'event': 'GAevent', 'eventCategory': 'Mail Link', 'eventAction':

Two google-services.json (with different accounts) in one app

限于喜欢 提交于 2020-01-01 17:07:29
问题 Is it possible, to use two different accounts for two different services of google in an Android app? I want to use Google Analytics with Account customer@gmail.com and Firebase Crashreport with Account developer@gmail.com. I get two google-services.json with different project_info values and can't combine them. The solution for different flavours is not relevant as I understand this, because I want to use 2 configuration files for the same flavour (release). 回答1: You can't split between

Google Analytics event flow

梦想与她 提交于 2020-01-01 16:29:07
问题 I am trying to use Google Analytics to examine how users progress through my site. The problem is that my site operates entirely upon AJAX. I have set up "events" using: _gaq.push(['_trackEvent', category, action]) These are being recorded by Analytics, but I am unable to view how users progress through each event. In other words, currently I can see that 10 users added a post and that 7 users added a comment to a post. What I want to see is how many of the users who added a post then also

custom event trigger in google tag manager

女生的网名这么多〃 提交于 2020-01-01 14:47:47
问题 Every time i create a custom trigger event it doesn't get fire. Can anybody please what may be the reason. I have created 'gacustomevent'custom triggerand have name it 'gaevent' but the event is not getting fired. Iwant to use the event in the dataLayer to capture the value. Any advice on how to get issue resolve 回答1: It's a bit unclear from your question how you set this up. It should look like this: dataLayer.push({ 'event':'myEvent' }) (this assumes that the dataLayer is already

Google Analytics - can it collect form data?

感情迁移 提交于 2020-01-01 11:35:07
问题 Simple scenario: I have a signup form, with user name, password, email address, may be credit card number. At the bottom of the page, I implement the Google Analytics code. when user clicks submit, it goes to a page wihtout google analytics. question is.. can GA get the data (user naem, password..email..etc) in the first form after user input the data? Do they say anything about it in their TOS or Privacy policy? 回答1: Yes. Any <script> you include in the page has complete access to alter the

How do I track User IDs w/Google Analytics & no page reload after login?

家住魔仙堡 提交于 2020-01-01 10:16:26
问题 We have an angular project that we want to track User IDs with Google Analytics. The problem is, when the user is logged out & first loads the site, we have the create call pass "auto" ga('create', 'UA-XXXX-Y', 'auto'); https://developers.google.com/analytics/devguides/collection/analyticsjs/ When the user logs in, there is no page load. Is it a problem to call the "create" event again with the User ID, or is there a better way to do this? ga('create', 'UA-XXXX-Y', { 'userId': 'USER_ID' });

Google analytics tells me that over 2% of my visitors are using Chrome 1 or 1.5, is that accurate?

人盡茶涼 提交于 2020-01-01 08:45:27
问题 This puts both Chrome 1 and 1.5 in the top ten Chrome-using visitors to my site, and they are surrounded purely by at least double-digit versions, and mostly v32. It also gets users of these versions above my self-imposed "1% of total" cutoff for browser support. Just barely. (Actually, it puts it at just over 2%.) Looking at a broader range (the past year), 1.5 doesn't even show up in the top 20, but 1.0 is #12 (at .6%, well below the cutoff). Am I to take these stats to heart and consider

How to configure dry run and log level options via XML in Google Analytics v4 SDK for Android?

若如初见. 提交于 2020-01-01 08:19:12
问题 The parameters documentation for the XML configuration file used by the Google Analytics v4 SDK (as found in the Google Play Services 4.3.23 release) says that ga_dryRun and ga_logLevel are valid attributes in the tracker file. Here is my res/xml/default_tracker.xml : <?xml version="1.0" encoding="utf-8"?> <resources> <bool name="ga_dryRun">true</bool> <string name="ga_logLevel">verbose</string> </resources> When I set this config file on a new tracker and run my app, I see the following in

Using Google Analytics in Firefox Extension

Deadly 提交于 2020-01-01 06:55:22
问题 I would like to use Google Analytics Event tracking for my Firefox addon. I have included ga script like this in my popup.html. <script src="http://www.google-analytics.com/ga.js"></script> And also added: <script > var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXXXXX-X']); </script> I push events with the following code: _gaq.push(['_trackEvent', 'example', 'clickedit']); I dont see any error in the firefox error console and also the event is not there in the analytics page. Any

Big Query - Google Analytics - Time diff between first visit and purchase

为君一笑 提交于 2020-01-01 06:34:11
问题 Trying to get a list: visitorid, time first visit, time of hit where transaction occurred. What've I've written is only grabbing rows that have transaction revenue. I am also trying to convert visitStartTime which is a unix date, to a regular date via Date(visitStartTime) but that's failing in the group by because of the outputted date. Any direction super helpful. SELECT fullvisitorID, visitNumber, visitStartTime, hits.transaction.transactionRevenue FROM [75718103.ga_sessions_20150310],