Google 分析报告流量减少了约 70%,但事实并非如此
Google Analytics reports a ~70% decrease in traffic, and it's not true
我已通过页面上的其他跟踪设备验证我们的流量保持稳定。所以,这是绝对的。不是入站流量问题。
我可以观看以下之间的实时流量:ChartBeat、Zopim 和 GA 以及 ChartBeat 和 Zopim 具有相同的计数(大约 70 个会话)和 GA 报告 8。我知道会有差异,但不会有这么大的差异。
我已经对集成进行了三重检查:https://onceamonthmeals.com 查看统计数据,下降涉及所有内容、所有设备、所有 OS - 所以它似乎不是一个技术问题。没有 JS 问题。
如果您确实查看了实施,您会注意到正在跟踪两个 GA 配置文件 - 这已经设置了几个月,我们已经在两个配置文件上成功跟踪了数字。现在两个配置文件报告的流量减少了 1/4。这也排除了可能过滤访问者的某种 GA 管理员更改。
就像,GA 说的,"eh, we're only going to count 1/4 of your traffic, starting today"。
我可以提供任何其他信息来帮助解决这个问题吗?
实际上 Google Tag Assistant says "no http response detected" and the network tab shows no calls to the GA endpoint. When I use the Google Analytics Debugger 我收到消息:
Running command: ga("send", "pageview")
analytics_debug.js:9 Storage not available. Aborting hit.
analytics_debug.js:9 Running command: ga("create", "UA-XXXXXX-X", {name: "oldTracker", cookieDomain: "https://onceamonthmeals.com"})
analytics_debug.js:9 Creating new tracker: oldTracker
analytics_debug.js:9 New visitor. Generating new clientId
analytics_debug.js:9 Running command: ga("oldTracker.send", "pageview")
analytics_debug.js:9 Storage not available. Aborting hit.
"Storage not available"表示GA不能设置cookie来存储client id。我有理由相信这是因为您在设置 cookie 域时包含了协议:
ga('create', 'UA-XXXXXXXX-X', { 'cookieDomain': 'https://onceamonthmeals.com' });
这应该只是 "onceamonthmeals.com"(或者甚至根本不需要设置 cookie 域)。
所以你至少应该检查一个 JS 问题,尽管这并不能解释为什么它以前有效。
我已通过页面上的其他跟踪设备验证我们的流量保持稳定。所以,这是绝对的。不是入站流量问题。
我可以观看以下之间的实时流量:ChartBeat、Zopim 和 GA 以及 ChartBeat 和 Zopim 具有相同的计数(大约 70 个会话)和 GA 报告 8。我知道会有差异,但不会有这么大的差异。
我已经对集成进行了三重检查:https://onceamonthmeals.com 查看统计数据,下降涉及所有内容、所有设备、所有 OS - 所以它似乎不是一个技术问题。没有 JS 问题。
如果您确实查看了实施,您会注意到正在跟踪两个 GA 配置文件 - 这已经设置了几个月,我们已经在两个配置文件上成功跟踪了数字。现在两个配置文件报告的流量减少了 1/4。这也排除了可能过滤访问者的某种 GA 管理员更改。
就像,GA 说的,"eh, we're only going to count 1/4 of your traffic, starting today"。
我可以提供任何其他信息来帮助解决这个问题吗?
实际上 Google Tag Assistant says "no http response detected" and the network tab shows no calls to the GA endpoint. When I use the Google Analytics Debugger 我收到消息:
Running command: ga("send", "pageview")
analytics_debug.js:9 Storage not available. Aborting hit.
analytics_debug.js:9 Running command: ga("create", "UA-XXXXXX-X", {name: "oldTracker", cookieDomain: "https://onceamonthmeals.com"})
analytics_debug.js:9 Creating new tracker: oldTracker
analytics_debug.js:9 New visitor. Generating new clientId
analytics_debug.js:9 Running command: ga("oldTracker.send", "pageview")
analytics_debug.js:9 Storage not available. Aborting hit.
"Storage not available"表示GA不能设置cookie来存储client id。我有理由相信这是因为您在设置 cookie 域时包含了协议:
ga('create', 'UA-XXXXXXXX-X', { 'cookieDomain': 'https://onceamonthmeals.com' });
这应该只是 "onceamonthmeals.com"(或者甚至根本不需要设置 cookie 域)。
所以你至少应该检查一个 JS 问题,尽管这并不能解释为什么它以前有效。