Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to export Firebase analytics data

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 I can find the only way to go about doing it is to link with BigQuery then do some SQL statements to build a table and export.

Unfortunately for us this is not going to work (due to client budget and capabilities). Is there any other way to export this data that I'm missing?

like image 455
random Avatar asked Jun 07 '16 21:06

random


3 Answers

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

like image 63
Steve Ganem Avatar answered Nov 15 '22 08:11

Steve Ganem


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

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

like image 41
Soham Sil Avatar answered Nov 15 '22 08:11

Soham Sil


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

like image 2
Alex_297 Avatar answered Nov 15 '22 09:11

Alex_297