如何创建Google Analytics自定义报告,以显示自定义用户ID访问的页面(按标题)?

时间:2015-03-10 15:00:28

标签: google-analytics report

我已成功添加GA代码以跟踪自定义用户ID,如下所示:

 <script>
    var user = "<?php echo $_SESSION['txtUserId']; ?>";
  (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');
    ga('set', 'dimension1', '<?php echo $userID; ?>');
  ga('send', {
  'hitType': 'pageview',
    'title': 'Login Page'
    });
</script>

但是,我还没有能够在我创建的同一个自定义报告中显示所有这些信息。我将度量标准组设置为&#34; PageViews&#34;和内容深入&#34;页面标题&#34;和&#34; UserID&#34;但我无法将所有这些信息显示在一份报告中。我或者看到Pagetitle和Pageviews或Page Title的命中数。我需要看到UserID去的页面。

谢谢!

2 个答案:

答案 0 :(得分:0)

利用自定义报告,您应该能够在每个报告中看到最多5个维度或使用API​​,您最多可以看到7个维度。

答案 1 :(得分:0)

使用CustomReports时,这应该非常简单:

  1. 选择网页浏览作为指标
  2. 选择页面标题客户端ID (或用户ID - 任意一个,具体取决于您在自定义维度中存储的内容)。
  3. 你应该得到你需要的东西:)

    enter image description here