作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Legato gem 从 Ruby 中的 Google Analytics 访问某个事件的总数,但我得到的结果与 Web 界面不一致。
我有一个这样的模型:
module Analytics
class ViewedContent
extend Legato::Model
metrics :users, :new_users, :total_events
filter :my_org do
# Look u[ event_label=X AND event_action=Y
[
eql(:event_label, "My Organisation", Legato.and_join_character),
eql(:event_action, 'Viewed_Content', Legato.and_join_character)
]
end
end
end
query = Analytics::ViewedContent.my_org.results(profile, {
:start_date => start_date,
:end_date => end_date
})
totalEvents
统计。
start_date = "2014-01-01".to_date
和
end_date = "2014-01-31".to_date
然后它工作正常,并返回相同数量的
totalEvents
到 Google Analytics 网络界面。
start_date = "2014-07-01".to_date
和
end_date = "2014-07-31".to_date
然后是
大大减少比在 Web 界面中(Legato 在 Web 界面中返回 555 与 662)。
最佳答案
在 Query Explorer 的帮助下我发现问题肯定出在 Google 的最后,而不是由于 Legato。问题出在这一行:
metrics :users, :new_users, :total_events
:total_events
然后突然它开始返回与谷歌分析网络界面相同的值。我现在单独请求
:users
和
:new_users
通过查找一个段(而不仅仅是这个过滤器)
关于ruby - Legato totalEvents 与 Web 界面不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25489652/
我正在使用 Legato gem 从 Ruby 中的 Google Analytics 访问某个事件的总数,但我得到的结果与 Web 界面不一致。 我有一个这样的模型: module Analytic
我是一名优秀的程序员,十分优秀!