汇总帐户 - 查看网页浏览的来源?

时间:2015-05-07 14:22:58

标签: google-analytics universal-analytics

我为其他几个域设置了汇总帐户(例如:mydomain.com,mydomain.org,mydomain.net)

当我查看汇总帐户时,我可以看到报告,但它们都来自“/”而不是“mydomain.org”或“mydomain.net”,是否有可能以某种方式看到它?或跟踪它?

在子网站上运行的代码:

<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-1', 'auto');

//roll up account
  ga('create', 'UA-xxxxxxxx-2', {'name':'rollupProperty'}); 
  ga('send', 'pageview');
  ga('rollupProperty.send','pageview');

</script>

1 个答案:

答案 0 :(得分:1)

我的一个客户有类似的情况, 默认情况下,Google Analytics仅显示页面修补程序(例如/mypage.php而不是mydomain.com/mypage.php,mydomain.org/mypage.php等)。

如果您只想临时解决方案,请转到&#34;行为 - &gt;网站内容 - &gt;所有页面&#34;在GA报告中选择&#34;主机名&#34;作为次要维度: enter image description here

如果您希望始终在GA报告中查看主机名,则应为汇总GA属性创建高级过滤器:

enter image description here

此过滤器可能允许您提取主机名(mydomain.org)和Ruquest URI(/mypage.php)并通过组合&#34; mydomain.org/mypage.php"重写请求URI;在GA报告中。

建议您测试这种方法。