Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know this isn't a focus for Google Analytics (and that tools like Mixpanel, KISSmetrics and Kontagent specialize in this area) but can it be used as an engagement tracking tool? More specifically, as a startup working on a social game and using Google Analytics, how should we instrument our code and analyze the results to gain the most insight into user behavior?

For example, the Google Analytics tool set doesn't provide retention reports, detailed event analysis or retroactive visitor-based funnels but it is fairly flexible and has other strengths. Where can we hack together a good-enough analytics solution in Google Analytics and where do we need to use a special purpose tool?

share|improve this question
I've tried to rework the question to be more concise, less subjective and focus specifically on social games. – Jono Jun 7 '12 at 1:46

closed as off topic by casperOne Jun 5 '12 at 15:45

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

A combination of the above is definitely going to allow you to slice the data in as many ways as possible, giving you as much insight as possible. Remember that Google Analytics is best served as an analysis tool, so the more thought you put into how you configure your custom variables, events, etc, the more you'll be able to do in the long run.

More specifically, here are a couple ideas for you:

  • Goals. Set them up. Sign ups, contact forms, etc. And definitely with funnels if applicable.
  • E-commerce tracking. Even if you don't sell anything, give your goals a relative value. This opens up a world of possibilities (for instance, the dollar index of your content will indicate what contributes to a sign up vs what does not).
  • Custom variables are the only reason aggregate data has any purpose whatsoever. For example, knowing the average person views 4.5 pageviews per visit is meaningless unless you can split it by logged in vs. logged out users. Or, going further, prospective visitor v. a user simply logged out.
  • Add event tracking to any server side errors to catch errors early. Add it to external links to make sure you aren't sending more people away than you expected.
  • If you're using a lot of AJAX you might want to look into virtual pageviews to make sure you're capturing those interactions.
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.