Tagged Questions
1
vote
0answers
9 views
Google Analytic Event tracking count fail
i faced a strange problem when i use event tracking to track a link. For example, i have a link
<a href="a.html" onClick="_gaq.push(['_trackEvent', 'cool', 'Click', 'link1']);" ...
1
vote
1answer
40 views
Google Analytics SDK for Android v2
I want to include Google Analytics in my android application, but I'm unable to see events in google analytic page. Here is my code:
analytic.xml:
<resources ...
-1
votes
0answers
17 views
Website event tracking on premise [closed]
I am looking for a "cheap" event tracking software like MixPanel/KISSMetrics.
I have hundreds of millions of events, so most hosted solutions are too pricey.
Is there some on-premise software i can ...
0
votes
0answers
67 views
How to Onclick Javascript + Google Analytics Integration
I have this project where i have to add a "Click to reveal" function. My problem is here:
http://lasikpro.com.my/contact/
What i want to achieve:
All addresses and telephone numbers will be shown ...
0
votes
0answers
71 views
Google Analytics Event Tracking - Form with checkboxes
Is it possible to track several checkboxes with event tracking?
For example:
Name:
email:
checkbox 1 x
checkbox 2 x
checkbox 3
checkbox 4 x
Now I would like to track that checkboxes 1,2 and 4 ...
0
votes
0answers
49 views
Trying to use Google Analytics event tracking for mp3 podcasts - doesn't work
I installed podcasts here:
http://www.allaboutvision.com/healthy-vision/
The code I added for Google Analytics event tracking doesn't seem to work. I am sure I'm doing something wrong.
Tracking ...
0
votes
0answers
62 views
Using Google Analytics Event Tracking on Submit
I'm trying to add event tracking for an input button to track the number of times the button was clicked.
The input is inside a PHP code, and I can't seem to get this to work.
Here is part of the ...
0
votes
0answers
29 views
Multiple events in one onClick?
Can anyone help as to why this isn't firing the GA event? The initial event is firing.
<a href="" onclick="mmConversionTag(270939, this, '_blank', 'http://www.retailer.com'); return false; ...
0
votes
0answers
117 views
google analytics event tracking not working
I want to track event in my blog pakistan-travel.blogspot.com but no data is showing in content-event-overview. Please tell me how to track event thanks in advance.
var _gaq = _gaq || [];
...
-1
votes
1answer
199 views
PHP using echo with google analytics event tracking
i need help with this PHP script that doesn't works for some reason as below
<?php
.
.
.
echo "<li><a href='#' onclick='print(); return false; _gaq.push(['_trackEvent', 'check', 'test1', ...
1
vote
0answers
58 views
google analytics tracking events from iframed page
I'm having this problem in tracking GA events from iFramed page.
It is tracking but it's clearly tracking wrongly.
Unique events data seems to be OK, Total events definitely not OK... It shows that ...
2
votes
2answers
769 views
Google Analytics Event Tracking
I am trying to implement the google event tracking api into a html5 player, but for some reason it doesn't want to work.. Here is what i am doing:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', ...
0
votes
1answer
98 views
Tracking events on parts of website - Google Analytics?
I'm building a single page ad-free portfolio-type website using jquery Isotope. I would like to track how often each project (Isotope element - div with text and a slideshow in it) will be clicked to ...
3
votes
4answers
464 views
Flurry for Desktop applications
Is there any way to support flurry for desktop applications or is there any other tool out there. I prefer Flurry as I'm using it for my mobile applications.
Thanks
0
votes
1answer
114 views
Which value use with _trackEvent to monitor retention / cohorts?
I want to monitor mobile application, basically one page application. To do this I am going to use Google Analytics and add Events for user interactions.
With Google Analytics you have 5 values you ...
2
votes
0answers
104 views
Recording elapsed time duration of more events in web application
I have a form to be filled in my web application and this form has different steps before hitting the submit button. like
enter name
enter value 1
enter value 2.
enter value 3
....
and finally ...
0
votes
2answers
872 views
Google Analytics Event Tracking on Page Exit
I have a javscript code wich record visitors interaction with the website (like calculating max scroll position, mouse movement in pixels, etc). However, these statistics are valid, only if the user ...
0
votes
1answer
53 views
How to track and persist events from catched exceptions or logged data processing deviances?
Let say that there are events that may occur (are less likely), but they should be registered. This is data that one just need for tuning ... to see what has happened and what needs to be changed and ...
1
vote
1answer
402 views
Display User ID in Mixpanel
I am using Mixpanel in a Ruby on Rails project to track real time user's events.
I am pushing the events with the user ID, and I would like to show the user ID inside the Mixpanel pages (a.i. streams ...
1
vote
0answers
288 views
Facebook - Google analytics not capturing inner tab page events/page tracking
The issue is that I'm using Google Analytics to capture user events as the proceed through my application (sits within a tab). The landing page is working fine and data is being sent to GA but when I ...
2
votes
1answer
831 views
Google Analytics Event Tracking not working?
I've added the following code to my web app, so that when a user clicks on a button, a google tracking event should be recorded:
//links jquery to button
$(this).click(function() {
//toggles a ...
2
votes
2answers
437 views
Google analytics event tracking integration. Anyone else find a better solution to this?
I haven't tested this in a full production environment, but this little snippet of jQuery seems to be giving me a good way to parse links with customizable class names into an equivalent google ...
0
votes
1answer
658 views
Google Analytics Event Tracking “labels” not recorded
I'm using Google Analytics event tracking with the new asynchronous code. I have specified a set a categories and actions, and they show up just fine in my analytics profile. However, I know that I ...
1
vote
0answers
54 views
Google Event Tracking on <p> clicks
I am looking to implement Google Event Tracking on a new website and couldn't find any documentation on this, but basically I just need to confirm that I add the standard 'onClick="_gaq.push([...' to ...
1
vote
2answers
436 views
In Cocoa, how can my NSView receive an event when the mouse is held down (but not moved)?
I'm looking for the right way to handle "mouse held down in one spot" events in my NSView subclass.
I am familiar with Cocoa's mouseDragged: event, but it is only triggered when the mouse moves. If ...
7
votes
3answers
1k views
Recommendation for click/event tracking mechanisms (python, django, celery, mongo etc)
I'm looking into way to track events in a django application (events would generally be clicks tied to a specific unique user id).
These events would essentially contain an event type like "click" ...
3
votes
5answers
2k views
Real Time Javascript Event Tracking (Javascript Stats)
There are lots of real time web stats services on the web (w3counter-histats-gostats).They just count once when page is requested , But what I want to do is track javascript functions/events, because ...
17
votes
3answers
2k views
How to trigger Google Analytics events from Python?
I'm developing a site that has a REST API and I'd like to track the API usage using Google Analytics events. Is there a straightforward way to trigger GA events from Python that doesn't involve ...
3
votes
2answers
2k views
How to track Google Analytics Events in Server Side asp.net?
Is there a way to track Google Analytics Events from Server Side in ASP.NET, the requirement is the the Event should be tracked on button click after some functionalities are executed on Serverside. ? ...