每月处理的点击数?
Hits Processed Per Month?
如果您参考 http://www.google.com/intl/en_uk/analytics/premium/features.html,您会注意到标准版允许每月处理 1000 万次点击,高级版允许每月处理 10 亿次。
我在一个帐户上有一个网站,不同的子域有多个 "folders",其中一些子域也有不同的 "Views" 或仪表板。
我最近访问的网站失去了对转化率的跟踪,一切都直线下降到接近 0%,这是一个不正确的统计数据。我很好奇如何判断这个帐户是否达到了标准版的 1000 万限制。或者至少如何计算一天、一周或一个月处理的实际点击量?
有什么想法吗?
谢谢!
您可以创建一个数据库 table,像这样:
visits(
id bigint primary key auto_increment,
ip text,
visit_date timestamp default current_timestamp
)
每次访问页面时,您都可以在 table 中插入一条记录。稍后您可以查看统计信息。例如,给定日期的访问次数如下所示:
select id, ip, visit_date
from visits
where visit_date >= '2015-07-21 00:00:00' and visit_date < '2015-07-22 00:00:00'
我不知道 Google 如何在 2015 年执行命中限制。但是在 2013 年,一位 Google 代表向我们的一位大客户发送了一份文件(回答有关数据限制的问题),其中包含以下段落:
How do data limits impact sampling? Google Analytics does not sample
your clients data at the point of collection or processing, regardless
of how far they exceed our stated limits. So no hits are discarded.
The only way to sample data at the point of collection is for clients
to use_setSampleRate in their tracking code.
[...]
[...] we reserve the right to shutdown their account [sc. if limits are exceeded], but it won't
happen before we have attempted to contact the account Admins multiple times
and we have exhausted all other options.
除非 Google 在过去的 1.5 年里改变了它的政策,否则我会说没有,未处理的点击不是你的问题;似乎 Google 会在问题发生之前与您联系,请求限制您的点击或升级到 Analytics Premium。
另外,由于您提到您有多个视图 - 视图不计入您的配额(它们以不同的方式显示相同的数据)。但是属性(我认为这就是你所说的 "folders" 的意思)确实如此。
2017 年更新:Google 似乎打算更严格地执行限制。我的一位客户现在在他的 GA 界面中有以下警告:
Your data volume (XXX hits) exceeds the limit of 10M hit per month as
outlined in our terms of service. If you continue to exceed the limit
you will lose access to future data.
如果您参考 http://www.google.com/intl/en_uk/analytics/premium/features.html,您会注意到标准版允许每月处理 1000 万次点击,高级版允许每月处理 10 亿次。
我在一个帐户上有一个网站,不同的子域有多个 "folders",其中一些子域也有不同的 "Views" 或仪表板。
我最近访问的网站失去了对转化率的跟踪,一切都直线下降到接近 0%,这是一个不正确的统计数据。我很好奇如何判断这个帐户是否达到了标准版的 1000 万限制。或者至少如何计算一天、一周或一个月处理的实际点击量?
有什么想法吗?
谢谢!
您可以创建一个数据库 table,像这样:
visits(
id bigint primary key auto_increment,
ip text,
visit_date timestamp default current_timestamp
)
每次访问页面时,您都可以在 table 中插入一条记录。稍后您可以查看统计信息。例如,给定日期的访问次数如下所示:
select id, ip, visit_date
from visits
where visit_date >= '2015-07-21 00:00:00' and visit_date < '2015-07-22 00:00:00'
我不知道 Google 如何在 2015 年执行命中限制。但是在 2013 年,一位 Google 代表向我们的一位大客户发送了一份文件(回答有关数据限制的问题),其中包含以下段落:
How do data limits impact sampling? Google Analytics does not sample your clients data at the point of collection or processing, regardless of how far they exceed our stated limits. So no hits are discarded. The only way to sample data at the point of collection is for clients to use_setSampleRate in their tracking code.
[...]
[...] we reserve the right to shutdown their account [sc. if limits are exceeded], but it won't happen before we have attempted to contact the account Admins multiple times and we have exhausted all other options.
除非 Google 在过去的 1.5 年里改变了它的政策,否则我会说没有,未处理的点击不是你的问题;似乎 Google 会在问题发生之前与您联系,请求限制您的点击或升级到 Analytics Premium。
另外,由于您提到您有多个视图 - 视图不计入您的配额(它们以不同的方式显示相同的数据)。但是属性(我认为这就是你所说的 "folders" 的意思)确实如此。
2017 年更新:Google 似乎打算更严格地执行限制。我的一位客户现在在他的 GA 界面中有以下警告:
Your data volume (XXX hits) exceeds the limit of 10M hit per month as outlined in our terms of service. If you continue to exceed the limit you will lose access to future data.