我只在Google Analytics(Universal Analytics)点击中看到了实时数据

时间:2015-01-24 04:28:42

标签: javascript google-analytics universal-analytics

我没有在受众群体概述中看到任何存储的数据,而只看到实时数据。此外,即使我在Admin> Custom Definitions> Custom Dimensions中设置了这些值,我也没有获得任何尺寸命中。我有什么傻事吗?

这是我的代码。每次历史状态发生变化时,我都在运行plugin_code (state)

var ga = undefined
 function plugin_code (state) {
  if (typeof ga == "undefined") {
   window.GoogleAnalyticsObject = "ga"
   if (typeof window.ga == "undefined") {
    ga = window.ga = function () {
     window.ga.q = window.ga.q || []
     window.ga.q.push (arguments)
    }   
    window.ga.l = 1 * new Date ()
    var ga_script_tag    = document.createElement("script")
    var first_script_tag = document.getElementsByTagName("script")[0]
    ga_script_tag.async = 1
    ga_script_tag.src   = "//www.google-analytics.com/analytics.js"
    first_script_tag.parentNode.insertBefore (ga_script_tag, first_script_tag)
   }
  }
  ga('create', 'UA-xxxxxxxx-1', 'auto')
  state.gid = 1 // debug.
  if (state.gid) ga('set', 'dimension1', state.gid)
  if (state.a)   ga('set', 'dimension2', state.a)
  ga('send', 'pageview', {'page': state.page, 'title': state.page})
 }

1 个答案:

答案 0 :(得分:1)

标准报告中的数据最多可能需要24小时才能显示。

  

Google表示,网站统计信息每24小时更新一次,但该公司并未具体说明更新可能与您的Google Analytics帐户相关的其他信息需要多长时间。例如,您可能还在使用Google的AdWords在其他网站上购买基于文字的广告。互联网营销顾问Talal Melhem等专业人士建议流量数据每三到四个小时更新一次,AdWords最多可能需要24小时,而Google Analytics信息中心的电子商务数据则会延迟72小时。 - 来源:How Frequently Does Google Analytics Update?

另外,请检查Profile Filters以确保您不排除流量。