通过 Garb 从 Google Analytics 配置文件中获取的数据是否经过采样?我们通过 Garb 从 GA 配置文件中获取特定日期范围内的结果,如下所示:
class Downloads
extend Garb::Model
metrics :totalEvents
dimensions :eventAction, :eventLabel, :eventCategory, :date
end
downloads = Downloads.results(<profile id of view in GA>, start_date: Date.civil(2015,8,10), end_date: Date.today, offset: 1, limit: 800)
当我在 Google Analytics(分析)仪表板中查看相同日期范围的 GA 配置文件中的相同数据时,我会在顶部看到采样消息。这是否意味着通过 Garb 获取的数据也会被采样?