I have a website which is using Google Analytics newer asynchronous tracking method (_gaq). The problem I've run into is that I want to institute some specific link tracking and am worried that I will be creating a race condition.
Basically, it's a news website so it has headlines which link to stories all over the place. A headline for...
So far I've seen flurry and Mixpanel.
Mixpanel appears to be the most interesting: http://mixpanel.com/android-analytics/ and has a flexible API.
However still wondering what else is out there and what other people might be using, thanks!
...
So far I've seen flurry and Mixpanel.
Mixpanel appears to be the most interesting: http://mixpanel.com/iphone-analytics/ and has a flexible API.
However still wondering what else is out there and what other people might be using, thanks!
...
Just when I get quite familiar with SQL statements once again, when pulling data from Google Analytics, I found that they don't use SQL, but rather, use Dimensions and Metrics and the combinations of them.
Why is a reason for that? I think it doesn't have a SQL interface (or a plain web server log download)? If so, how do SQL statemen...
From a 'gradually adding more reports'- standpoint:
is it possible to add settings like filters, ecommerce-metrics, funnels, etc. 1 at a time, and still have them be applied to the data prior to the date you applied the settings? (have the settings backward propagated if that's correct english)
I can image if GA keeps the raw underlyi...
On
http://code.google.com/apis/analytics/docs/gdata/gdataReferenceCommonCalculations.html#navigation
The "nagviation section", it is said that, to find
Which pages are users going to after test.html?
We can use:
dimensions=ga:nextPagePath
metrics=ga:pageviews
filters=ga:previousPagePath%3D~test.html
I also tried using
dimens...
I am building a customer-facing website that requires me to build 1) some analytics for customers, and 2) to maintain some internal analytics for improving the site further. These require different kinds of information.
For customers
I am now capturing visits and events relevant to customers with fields such as visit_count and event_cou...
Is there an analytics tool of any kind to analyse the performance of selectors on a site (ie. number of iterations over the dom, average time taken for each search, number of searches etc.)? Either a desktop tool, or a jQuery plugin or anything?
We are finding performance is being impacted by the number of selector searches jQuery is do...
Hi, I am creating a custom reporting website, where I want to show live data from google analytics and accordingly the data in my website will change. I want it to be automated and dynamic, like whenever the data changes in GA, i want it to be automatically changed in our website, which will be shown to our clients to show the performanc...
Hi,
Already posted this in Google Analytics help forum, but noone could help. Hopefully I have more luck here... :
I use Google Anlaytics asynchronous tracking for my pages. Works like a chram.
THE PROBLEM:
Recently we added event tracking to monitor how often people click on download links on our pages. I encountered a problem with Fi...
I need to add analytics feature to our web service so we can provide our customers a way to understand their own content. I was wondering if anybody can provide some pointers, guidelines on designing such solutions. I know this is a little too open-end. Here is a list of concrete questions, and I have a vague idea on some of them but I w...
I wanted to look up the page views of my website in the "Top Content" section. By increasing the time period I had the phenomena of decreasing page views for the same page and the same day. The longer the time period, the smaller the page views.
On August 12 there were 1410 page views.
June 1 - August, 16: When I look at August 12, the...
This question is for people that has experience using flurry sdk in android applications. This sdk installs a custom exception handler. I am not satisfied with the detail of information that is logged by flurry and I would like to install my own ExceptionHandler while using flurry. Sadly the ExceptionHandler is unique per thread. Is ther...
I am looking to be able to track how many a days a given unique visitor comes to the site. Ideally I am looking for a report that says:
1 day a week: 562
2 days a week 380
3 days a week 42
etc...
Where if a unique visitor comes monday, wednesday and friday they would be added into the 3 days a week bucket regardless of how many times ...
I want to be able to allow my writers to see how much traffic their articles are getting. I can do this in Google Analytics but can't figure out how to share this data with them without giving them access to all the data so I was thinking of adding another analytics service that would insert a unique code for each author on their articl...
I need to implement a custom-developed web analytics service for large number of websites. The key entities here are:
Website
Visitor
Each unique visitor will have have a single row in the database with information like landing page, time of day, OS, Browser, referrer, IP, etc.
I will need to do aggregated queries on this database s...
Hey,
I'm looking to track users average time on a website (in the same way that Google analytics does) for internal administration.
What's the easiest way to do this?
...
Here's the scenario:
I have a mailing list that contains a PDF download link. The PDF contains ads with clickable links. I need to get analytic data on the link clicks - preferably via Google Analytics (due to the richness of information available).
The solution I have in mind is for the link to go to a web page that I host with some s...
I'm building an application that requires storage and querying of very large amount of timestamped data. Specifically, this is analytics type data whereby a particular "set" can contain up to 100 separate data points tied together via a shared timestamp. This data is static, in that it will never change once stored but may be queried mul...
for example...
if(isset($_GET['utm_blah'])) { $referrer = $_GET['utm_blah'; }
else { $referrer = $_SERVER['HTTP_REFERER']; }
looking to parse referrer sent by google adwords, or twitter, or email, ... etc. thanks!
...