How to export Firebase analytics data

前端 未结 4 1395
别那么骄傲
别那么骄傲 2020-12-10 12:02

I\'m trying to figure out if it\'s possible to export all the Firebase Analytics data to an excel spreadsheet, similar to how you can do it with Google Analytics. From what

相关标签:
4条回答
  • 2020-12-10 12:30

    For all those who use AWS and want an automated pipeline, BigQuery allows you to export CSV if you have no arrays and JSON if you do. You can then automate exports to google cloud storage. Finally, you can use Airflow with AWS or an EC2 with a CRON or some other orchestration or scheduling system to schedule the merging of the google data to your AWS pipeline.

    0 讨论(0)
  • 2020-12-10 12:34

    You could easily select and copy UI blocks on the Analytics web page in Firebase, and then just paste the copied data into an Excel sheet. You'll see fancy tables.

    There is a YouTube video that explains and demonstrates the procedure here:
    Copy Your Analytics Data to a Spreadsheet with this One WEIRD Trick! - Firecasts

    0 讨论(0)
  • 2020-12-10 12:42

    As our company uses AWS for it's projects, BigQuery is not an option for now so I have moved on to scrap the data from Firebase.

    You can use Selenium and Beautifulsoup in python to scrap the data from Firebase.

    0 讨论(0)
  • 2020-12-10 12:44

    Update: You can now export the analytics reports as CSV from the Firebase console by clicking the Download CSV option from the overflow menu.


    In the meantime, you really should give BigQuery another look. The pricing is very reasonable and there is a free query tier of 1 TB/mo.

    Steve Ganem

    Product Manager, Firebase Analytics

    0 讨论(0)
提交回复
热议问题