1

I am getting an unusually high amount of reads on my Firebase app and I would like to know precisely where they occur. For example, in which collection, in which document in a collection. If it is a listener that's adding up reads or simple reads.

uber
  • 4,163
  • 5
  • 26
  • 55

1 Answers1

1

There are currently no tools to audit Firestore access. You will have to log access from your application code and collect those somewhere for you to analyze.

Realtime updates from the Firestore console is often a source of unexpected reads.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441