Google Analytics(分析)SiteSpeedSampleRate

时间:2014-03-11 13:01:26

标签: google-analytics analytics appharbor

我想跟踪每个页面视图的100%时间,因为我的网站没有太多的流量,每周大约1000次。我读到siteSpeedSampleRate默认为1%,这不会给我带来很多样本。

我找到的大部分文档都是旧的ga.js版本,我使用的是analytics.js版本(我相信它仍在测试版中)。无论如何,我的语法在这里有什么问题?自从我今天早上实施此更改后,我仍然没有看到任何样本......我是否需要做一些不同的事情,因为我的网站是在Appharbor上托管的?

ga('create', 'UA-xxxxxxxx-x',
      {'cookieDomain': 'apphb.com',
       'siteSpeedSampleRate': 100});

Here's a page我一直在使用我的语法,我发现another page显示了如何在此处设置多个参数。

1 个答案:

答案 0 :(得分:4)

试试这种方式,

在跟踪代码 ga.js

....
_gaq.push(['_setAccount', 'UA-xxxxxxxx-x']);
_gaq.push(['_setSiteSpeedSampleRate', 100]);
_gaq.push(['_trackPageview']);
....

More Documentation


<强>的analytics.js

ga('create', 'UA-XXXX-Y', {'siteSpeedSampleRate': 100});  // Creates a tracker.
ga('send', 'pageview');    // Sends a pageview.

第一行调用 create 命令,第二行调用发送命令。

更多DocumentationAdvanced Configuration