Konstantin Konopko
Konstantin Konopko

Reputation: 5418

Firebase: analytics for realtime database

I need to have an analytics of my Realtime Database, such as: count of users, count of active users (field dateLastVisit in user profile is no later than a week) and so on. How can I do this? Currently I can find how to use analytics for only apps.

Upvotes: 1

Views: 1581

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599071

Such metadata is not available for the Firebase Realtime Database, nor is Google Analytics for Firebase aware of access to the database. But if you fire Analytics events from your app when you access the database, you can probably accomplish the same. Or alternatively, you could simply store the data in the database and query it there.

Upvotes: 1

Related Questions