Discrepancies on “active users metric” between Firebase Analytics dashboard and BigQuery export

末鹿安然 提交于 2019-11-29 04:37:19

You need to wait for full 3 days for data from offline devices to be uploaded. Your query correctly filter the events based on the event timestamp and you pull data from 3 days but that is only day and half from today and that is enough for all data to be uploaded. Try including 3 days from yesterday.

Also try using user_engagement event instead of session_start. I believe active user count is based on user_engagement and not on session_start events.

Also FB reports take a bit to process so you wight want and check the FB reports the next day.

FB reports are done on the time zone on the account and events are timestamped in UTC so the day in FB reports is different from UTC calendar day. You want to control for that discrepancy as well to get matching numbers.

Sessions are by-default measured after user activity of 10 seconds in the respective app which you can change. Try changing the sessions start time count to the least number possible and then you may arrive at a number closer to what you are expecting.

Alex Radzishevsky

For Android stats I used:

user_dim.device_info.resettable_device_id

instead of

user_dim.app_info.app_instance_id

and it produced better results.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!