Google Analytics: Changing the tracked URL path

Updated . Posted . Visible to the public. Repeats.

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)

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 Show archive.org snapshot .

Legacy snippet

Change this:

_gaq.push(['_trackPageview']);

... to this:

_gaq.push(['_trackPageview', '/YOUR-CUSTOM-PATH']);
Profile picture of Henning Koch
Henning Koch
Last edit
Henning Koch
License
Source code in this card is licensed under the MIT License.
Posted by Henning Koch to makandra dev (2012-04-30 08:15)