Google Analytics不会实时跟踪?

时间:2014-04-24 11:29:21

标签: javascript google-analytics

您好我有这段GA代码,它似乎工作正常,但它似乎没有实时更新?我必须更新它以使实时报告工作进行放置。

有没有人解释为什么会这样?

    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

    ga('create', 'UA-21324070-1', 'example.co.uk');
    ga('send', 'pageview');

2 个答案:

答案 0 :(得分:0)

Google Analytics(分析)不会实时更新,也不会更新网站管理员工具(作为旁注)。通常GA会在前一天更新每天更新和WT 3天。此外,您仍然可以访问谷歌分析控制台和这里有一个名为“实时”的部分。它将告诉您网站上发生了什么 '现在'

答案 1 :(得分:0)

我自己解决了这个问题,显然它与Universal Google Analytics代码有关,因此我使用ga.js文件将其切换回旧版本。

现在这是我的代码,它工作正常

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-40584070-1']);
_gaq.push(['_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);
})();