Google Analytics intro - Best practices for WCM

24
1. Google Analytics Best Practices for WCM 30/08/2012 Joris Bekaert

description

Introducing Google Analytics and some best practices for implementing it with your web content management platform.

Transcript of Google Analytics intro - Best practices for WCM

Page 1: Google Analytics intro - Best practices for WCM

1.

Google Analytics

Best Practices for WCM

30/08/2012 – Joris Bekaert

Page 2: Google Analytics intro - Best practices for WCM

2.

Table of contents

1. “Google Analytics” a short history

2. How does it work?

3. Initial setup & deployment

4. Advanced integration

5. Points of attention for implementation

Page 3: Google Analytics intro - Best practices for WCM

3.

Google Analytics a short history

• April 2005: Urchin acquired by Google

• November 2005: First Rollout Google Analytics

• August 2006: Second Rollout

• April 2011: New version of interface

• March 2012: End of sales standalone Urchin

• June 2012: Mobile Google Analytics App

Page 4: Google Analytics intro - Best practices for WCM

4.

How does it work?

Page 5: Google Analytics intro - Best practices for WCM

5.

Initial setup: Creating GA Account

http://www.google.com/analytics

Page 6: Google Analytics intro - Best practices for WCM

6.

Initial setup: Creating GA Account

Page 7: Google Analytics intro - Best practices for WCM

7.

Initial setup: Getting GATC

Page 8: Google Analytics intro - Best practices for WCM

8.

Initial setup: User interface

Page 9: Google Analytics intro - Best practices for WCM

9.

The GATC explained

Google Analytics Tracking Code (GATC)

• Asynchronous code

• Downloads ga.js

• Sets first party cookies

• Gathers and transfers basic analytics data set

Page 10: Google Analytics intro - Best practices for WCM

10.

Deploying The GATC

• Before </head> or before </body>

• Needs to be added to 90% of the pages to get

usefull reports (troubleshooting tools available

e.g. Observepoint)

• Use a content management system to deploy

(flexibility)

Page 11: Google Analytics intro - Best practices for WCM

11.

Advanced integration

1. Tracking File Downloads

2. Event tracking

3. Tracking Search Results

4. Tracking error pages and broken links

5. Rollup reports

Page 12: Google Analytics intro - Best practices for WCM

12.

Tracking File Downloads

• Virtual PageViews

<a href=“mydoc.pdf”

onclick=“_gaq.push(‘_trackPageview’,’/downloads

/mydoc.pdf’);”>Download a pdf<a>

• Event Tracking

Page 13: Google Analytics intro - Best practices for WCM

13.

• Track in-page actions

• Flash movie player

• Exit links

• Ajax page elements (onClick, onSubmit, onReset, ...)

• File Downloads

• Event Tracking needs to be added in the HTML in a

consistent way (CMS)

• _trackEvent function

Event Tracking

Page 14: Google Analytics intro - Best practices for WCM

14.

Event Tracking

Parameter Condition Description

category Required The name you supply to the objects you

want to track

action Required A string that is uniquely paired with each

category and commonly used to define

the type of user action for the web object

optional_label Optional A string to provide addtional dimensions

to the event data.

optional_value Optional An integer that you can use to provide

numerical data about the user event

(time, amount)

optional_nonInteraction Optional The nonInteraction event is set to define

wether an event is treated as a non-

interaction.

<a href=“#” onClick=“_gaq.push([‘_trackEvent’,

‘Category’, ‘Action’, ‘Label’]);”>Label Link</a>

Page 15: Google Analytics intro - Best practices for WCM

15.

Event Tracking (examples)

gaq.push([‘_trackEvent’, ‘Video’, ‘Play’, ‘Alone in New York’]);”

gaq.push([‘_trackEvent’, ‘Video’, ‘Pause’, ‘Alone in New York’,

‘30’]);”

Page 16: Google Analytics intro - Best practices for WCM

16.

Event Tracking (examples)

Page 17: Google Analytics intro - Best practices for WCM

17.

Event Tracking (examples)

Page 18: Google Analytics intro - Best practices for WCM

18.

Event Tracking (examples)

• Tracking Mailto

<a href=“mailto:[email protected]

onClick=“_gaq.push([‘_trackEvent’,’Exit Points’,’Click

- Email’, ‘[email protected]’]);”>

[email protected]</a>

• Tracking embedded Video From Youtube

-> attach events to Youtube Javascript API

Page 19: Google Analytics intro - Best practices for WCM

19.

Site Search

• Is the site search working?

Page 20: Google Analytics intro - Best practices for WCM

20.

• Tracking Zero results?

• Additional _trackPageview

• Additional _trackEvent

Page 21: Google Analytics intro - Best practices for WCM

21.

Error Pages & Broken Links

• Add GATC to Error page templates

• Add additional _trackPageview code

<script type="text/javascript">

var _gaq = _gaq || [];

_gaq.push(['_setAccount', 'UA-33974358-1']);

_gaq.push(['_trackPageview‘, ‘/error 404/’ + document.location.pathname +

document.location.search’]);

(function() {

var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;

ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-

analytics.com/ga.js';

var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);

})();

</script>

Page 22: Google Analytics intro - Best practices for WCM

22.

Rollup Reports

• Technique usefull for big companies with semi-

autonomous country offices <script type="text/javascript">

var _gaq = _gaq || [];

_gaq.push(['_setAccount', 'UA-33974358-1']);

_gaq.push(['_trackPageview']);

_gaq.push([‘t2._setAccount', 'UA-22334567-1']);

_gaq.push([‘t2._trackPageview']);

(function() {

var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;

ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-

analytics.com/ga.js';

var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);

})();

</script>

Page 23: Google Analytics intro - Best practices for WCM

23.

Points of attention for implementation

• Implementing Google Analytics needs extra

development

• Check Google Analytics features of the WCMS

• Create a tracking plan before the development

starts

• It can save work if the web agency can create the

tracking plan

Page 24: Google Analytics intro - Best practices for WCM

24.

Further reading

http://www.advanced-web-metrics.com/