Reputation: 3651
When I look at my firestore usage, I have 10s of thousands of "reads" and that seems excessive to me considering the usage of the site. I've done a lot of tuning (making sure to pull back as few documents as possible) but it didn't seem to help. I can't seem to find on the dashboard anywhere under usage where I can see what queries are hammering the database so I can try and fix it. Is there anywhere where it shows what queries are being run?
Upvotes: 4
Views: 299
Reputation: 317467
No, there is currently no way to see what queries are being performed.
Bear in mind that viewing your database in the Firebase console will incur document reads in order to populate the screen. Leaving the console open will continue to incur reads as the database changes, since those changes might be reflected in real time.
Upvotes: 4