Read more

Google Analytics: Change the tracked URL path

Henning Koch
April 30, 2012Software engineer at makandra GmbH

By default, Google Analytics tracks the current URL for every request. Sometimes you will want to track another URL instead, for example:

  • When an application URL contains a secret (e.g. an access token)
  • When you want to track multiple URLs under the same bucket
  • When you want to track interactions that don't have a corresponding URL + request (e.g. a Javascript button or a PDF download)
Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

Luckily the Analytics code snippet allows you to freely choose what path is being tracked. Simple change this:

ga('send', 'pageview');

... to this:

ga('send', 'pageview', { 'page': '/YOUR-CUSTOM-PATH' });

With Unpoly

With Unpoly you want to trigger an Analytics pageview whenever a major content fragment is replaced. See Unpoly instructions here.

Legacy snippet

Change this:

_gaq.push(['_trackPageview']);

... to this:

_gaq.push(['_trackPageview', '/YOUR-CUSTOM-PATH']);
Posted by Henning Koch to makandra dev (2012-04-30 10:15)