google-analytics

How to get active users distributed by Campaign source? Google Analytics campaign tracking ios

本小妞迷上赌 提交于 2019-12-19 10:04:23
问题 I need to track my ios app installs by campaign src. and i am using google Analytics campaign measurement for that . i need to associate the campaign source with the events. so each event will have the campaign source ( referrer ) as dimension. that's will help me to get the active users distributed by campaign source ! How could i do that ? in android i can get the campaign source (referrer) and store it in the device storage (like: NSUserDefaults), then i send it with every event. but i

How to get active users distributed by Campaign source? Google Analytics campaign tracking ios

我是研究僧i 提交于 2019-12-19 10:03:10
问题 I need to track my ios app installs by campaign src. and i am using google Analytics campaign measurement for that . i need to associate the campaign source with the events. so each event will have the campaign source ( referrer ) as dimension. that's will help me to get the active users distributed by campaign source ! How could i do that ? in android i can get the campaign source (referrer) and store it in the device storage (like: NSUserDefaults), then i send it with every event. but i

Accessing ClientID set by Google Analytics through Google Tag Manager

穿精又带淫゛_ 提交于 2019-12-19 09:16:34
问题 I have setup a new Universal Analytics tracking and would like to store ClientID in one of the custom dimensions slots . The tracking tags are implemented through Google Tag Manager (using the predefined UA tag) and I am having the difficulty to passing the Client ID (via custom JavaScript Macro) with the basic pageview request. I have named my tracker so that I can access it and this code runs without any error in console, however when used with GTM, it's returning an error. ga.getByName(

Google Analytics Spam on Mobile - App Not Released

无人久伴 提交于 2019-12-19 07:26:29
问题 Across multiple Google Analytics accounts there seems to be an outbreak of spam. Lots of events posted similar to the one below: EVENT CATEGORY: to use this feature visit: EVENT-TRACKING.COM Now for web, I can add a filter to block by hostname. Not perfect, but doable. But what about mobile? I have an app I haven't even released yet getting these spam events. So these guys aren't crawling sites and spamming, they're actually just guessing Analytics account numbers and using the API. Can

Monitor Google Analytics requests on an iPhone Application

丶灬走出姿态 提交于 2019-12-19 06:29:07
问题 I am trying to monitor the Google Analytics request on an iPhone application and for some reason I don't see any of GA the requests. However I can see and uniquely identify the traffic on the google analytics interface. I have tried using several technics including using Fiddler/Charles as a proxy and overlap the computer ip. While I can see many http request using this technic, I don't see any request that are related to Google Analytics. What can be done to capture these requests? Note: As

Tracking a download button click with Analytics using events

狂风中的少年 提交于 2019-12-19 06:24:10
问题 I'm tracking the Download button click on a website featuring a project of mine with this code: function trackDownload(link) { try { _gaq.push(['_trackEvent', 'Downloads', 'Click', 'Setup executable']); setTimeout('document.location = "' + link.href + '"', 100); } catch (err) {} return false; } And the button is something as: <a href="files/setup.exe" onclick="return trackDownload(this);">Download</a> So, when a user clicks it, an event is pushed to Analytics and then the user is redirected

Tracking a download button click with Analytics using events

点点圈 提交于 2019-12-19 06:22:52
问题 I'm tracking the Download button click on a website featuring a project of mine with this code: function trackDownload(link) { try { _gaq.push(['_trackEvent', 'Downloads', 'Click', 'Setup executable']); setTimeout('document.location = "' + link.href + '"', 100); } catch (err) {} return false; } And the button is something as: <a href="files/setup.exe" onclick="return trackDownload(this);">Download</a> So, when a user clicks it, an event is pushed to Analytics and then the user is redirected

Google Analytics on iOS: events not tracked

浪尽此生 提交于 2019-12-19 05:37:07
问题 I added Google Analytics SDK to my project, following the provided instructions on the guide by Google. However, when I try to track some events, this is the debug output: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { […] // Google Analytics [GAI sharedInstance].trackUncaughtExceptions = YES; [GAI sharedInstance].dispatchInterval = 20; [[[GAI sharedInstance] logger] setLogLevel:(PADEV ? kGAILogLevelVerbose : kGAILogLevelError)];

How to extract information from Google Click ID (gclid)?

你说的曾经没有我的故事 提交于 2019-12-19 05:22:31
问题 There is some way to get campaign information like source, name, medium, keyword, etc from the given gclid parameter that came in the query string? 回答1: Probably not. It contains a timestamp, and two other integers. However we couldn't match those other integers to any campaign, adword, or keyword ID that we found in the Adwords backend. We've written about how gclids are encoded (and how you can go about decoding them for yourself). 回答2: Take a look at CLICK_PERFORMANCE_REPORT, it has plenty

Tracking internal users on wordpress

不打扰是莪最后的温柔 提交于 2019-12-19 04:08:29
问题 We have an internal WordPress site, and about 25 users. Our current Google analytics set-up will show us how many times a page has been visited, but because everyone comes from the same IP address it thinks that it is basically one very industrious person clicking a lot. Does anyone have a strategy for tracking individual users? (They are all logged into WordPress as a function of our single sign on.) 回答1: You can use the _setCustomVar method from the JavaScript API to provide the user name