Shahzad Akram
Shahzad Akram

Reputation: 5254

Firebase Realtime Database detailed usage

Where can I get Firebase Realtime Database detailed usage i.e. I want to get details about where data is being used? My database size is about 700kb and 10GB downloaded in 2 days, I am unable to figure it out, how did this happen. Currently, the usage tab just showing me the basic usage by day. Can I get more detailed usage information?

Upvotes: 0

Views: 123

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598827

See the Firebase documentation on monitoring usage, which lists two main options:

  • The Usage in the Firebase console, which you already found.
  • StackDriver monitoring, which will you give you more granular usage data.

If neither of these allow you to determine where the usage is coming from, you have a few more options/things to consider:

  • Keep in mind that traffic for showing the database in the Firebase console is also charged. Especially early on in development this can be a major portion of the usage, as you won't have many users yet.
  • You can use the database profiler, which logs all the activity in your database over a given period of time.

Upvotes: 1

Related Questions