Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't I view Real Time users on firebase?

Tags:

I used to use Admob analytics to view my users activity. There I was able to view real time app running users. Now when I upgraded to the Firebase, I don't find any real time user stats.

Does firebase has real time users stat feature? Thanks in advance.

like image 661
Aawaz Gyawali Avatar asked May 21 '16 12:05

Aawaz Gyawali


People also ask

Are Firebase events real time?

You can see realtime users and events at StreamView in Firebase. StreamView shows you who is using your app and what they are doing, in real time. if you properly integrated the Firebase Analytics SDK in your app, StreamView tab will be visible in your Firebase Analytics.

How do I check my Firebase realtime database?

To see your current Realtime Database connections and data usage, check the Usage tab in the Firebase console. You can check usage over the current billing period, the last 30 days, or the last 24 hours.

How do I enable Google Analytics on Firebase?

Permanently deactivate collection If you need to deactivate Analytics collection permanently in a version of your app, set FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED to YES (Boolean) in your app's Info.


2 Answers

There currently is no equivalent to Google Analytics' real time tracking of user information available in Firebase Analytics.

Update (February 2017): Firebase added DebugView to its Analytics product. This allows you to see a near realtime stream of the events from a specific device. Note that (as its name implies) this feature is most useful for debugging whether you have instrumented your code correctly. It is not the same as the realtime analytics in Google Analytics.

like image 87
Frank van Puffelen Avatar answered Oct 22 '22 17:10

Frank van Puffelen


You can see realtime users and events at StreamView in Firebase. StreamView shows you who is using your app and what they are doing, in real time. if you properly integrated the Firebase Analytics SDK in your app, StreamView tab will be visible in your Firebase Analytics.

Sample Screen from StreamView

Detailed Information from Google Support : https://support.google.com/firebase/answer/7229836?hl=en

like image 41
mpolat Avatar answered Oct 22 '22 19:10

mpolat