排除来自Google Analytics的内部流量

时间:2012-12-05 11:30:29

标签: javascript cookies google-analytics

在工作中我们拥有动态IP地址,因此通过IP排除内部流量对我们不起作用,我们必须在用户浏览器中设置一个Cookie,告知Google Analytics将安装此Cookie的用户排除任何流量。< / p>

我们使用的cookie是:

<body onLoad="javascript:_gaq.push(['_setVar','me_exclude']);">

此Cookie位于未链接到的页面/ ex上,因此访问它的唯一人员就是知道将自己排除在Google Analytics之外的人。

我在徘徊的是您是否还需要在此页面上包含跟踪代码以使排除Cookie正常工作,或者最重要的是所需要的一行?

1 个答案:

答案 0 :(得分:0)

我差点放弃寻找答案,但随后发现了这个: https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced#optout

1)在您的网站上创建一个虚拟页面。例如: www.yourdomain.com/exclude-traffic.html

2)加入&lt; meta name =&#34; robots&#34; content =&#34; noindex,nofollow&#34;&gt;在头部,所以页面不会被索引。

3)在head标记内添加跟踪代码上方的脚本。确保更新UA-XXXXXXXX-Y值。您可以在管理员中检查您的GA代码 - &gt;跟踪信息 - &gt;跟踪代码

4)在body标签内添加链接。

5)打开页面,然后单击链接。

最终结果:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <title>Remove My Internal Traffic from Google Analytics</title>
        <meta name="robots" content="noindex, nofollow">
        <script>
            // Set to the same value as the web property used on the site
            var gaProperty = 'UA-XXXXXXXX-Y';

            // Disable tracking if the opt-out cookie exists.
            var disableStr = 'ga-disable-' + gaProperty;
            if (document.cookie.indexOf(disableStr + '=true') > -1) {
                window[disableStr] = true;
            }

            // Opt-out function
            function gaOptout() {
                document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
                window[disableStr] = true;
            }
        </script>
        <script>
            (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-XXXXXXXX-Y', 'domainname.com'); //now its changed to auto
            ga('send', 'pageview');
        </script>
    </head>
    <body>

    <h1>Remove My Internal Traffic from Google Analytics</h1>
    <p><a href="javascript:gaOptout()">Click here to opt-out of Google Analytics</a></p>

    </body>
    </html>