Home > database >  How to view amount of reads and writes with Google Firebase?
How to view amount of reads and writes with Google Firebase?

Time:11-29

How can I view the amount of reads and writes in real-time with Google Firebase?

That is, if my app reads something from Firebase how can I view the number of reads (getting incremented by 1 in this case) immediately after?

CodePudding user response:

The closest you have like that for your real Firebase/Google Cloud project is going to be the logs in Cloud Logging and Cloud Monitoring. Within the Firebase console there is just the 30-day aggregated usage report.

Also see:

  • Related