analytics

Race condition and using Google Analytics Asynchronous (_gaq) synchronously

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...

What are my options for mobile android analytics?

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! ...

What are my options for mobile iphone analytics?

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! ...

Why do Web Analytics such as Google Analytics use Dimensions and Metrics instead of SQL statement?

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...

in Google Analytics can settings, like filters, funnels etc. be defined afterwards and still efect prior data?

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...

Google Analytics: why nextPagePath the same as pagePath when looking for where do users go after faq.html

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...

Does it make sense to log every single page visit?

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...

Analyse jQuery selector performance?

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...

google analytics api in php website

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...

Google Analytics: Mix asynchronous and synchronous tracking to track downloads using events

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...

How to design analytics solution (Django stack)

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...

Google Analytics: Page views are decreasing when I'm increasing the time period. Please help!

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...

Android and Flurry ExceptionHandler

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...

How do you setup google analytics no track the number of days a week that a unique visitor visits ?

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 ...

Best way to implement supplemental analytics

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...

Database architecture for millions of new rows per day

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...

How to track user time on site

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? ...

Techniques to Trigger Google Analytics Tracking from PDF Links

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...

Best storage engine for high volume, static analytics data

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...

best way to parse analytics to find referrer?

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! ...