将HTTP状态代码记录到Google Analytics(分析)自定义维度

时间:2019-10-21 12:40:03

标签: google-analytics custom-error-pages ghost-blog gtag.js

我正在尝试跟踪导致我的Ghost博客出现错误的页面。可以在此处找到实时错误页面:

https://jessehouwing.net/404/

为此,我将以下代码添加到错误页面。

标题

<script async type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=UA-29964481-1"></script>
<script type="text/javascript">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'UA-29964481-1', {
    'custom_map': {'dimension1': 'statusCode'}
  });
</script>

<script>
    gtag('event', 'httpError', { 'statusCode': 404 });
</script>

并在Analytics(分析)门户中为此属性创建了自定义维度:

enter image description here

在开发人员控制台中,我可以看到正在发出的请求:

enter image description here

事件尚未在分析门户中显示

我的问题

如何在不输入随机数据的情况下调试它?而我应该在配置/错误页面模板中放入什么来查看发生此事件的页面?

1 个答案:

答案 0 :(得分:0)

这似乎一直都是正确的,除了默认情况下Google Analytics(分析)似乎对TODAY不感兴趣并一直到昨天结束为止为止为止。

enter image description here