Can't I view Real Time users on firebase?

19,835

Solution 1

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.

Solution 2

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

Solution 3

You can now see realtime events in DebugView option at the console. Pretty neat feature, works great. Here is an example: Console

See more info at https://firebase.google.com/docs/analytics/debugview

Solution 4

As Frank van Puffelen replied, currently there is no realtime information available in Firebase Analytics dashboard. Until this feature is available your next best option is to enable debug logging as defined in the developer documentation:

iOS: https://firebase.google.com/docs/analytics/ios/start#next_steps

Android: https://firebase.google.com/docs/analytics/android/events#view_events_in_the_android_studio_debug_log

When you log event and the event data is uploaded you will see something like this (Android):

I/FA      : App measurement is starting up, version: 9080
I/FA      : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
V/FA      : Logging event: origin=auto,name=_f,params=Bundle[{_c=1}]
V/FA      : Uploading data. app, uncompressed size, data: com.example.app, 348, 
V/FA      : batch {
V/FA      :   bundle {
V/FA      :     protocol_version: 1
V/FA      :     platform: android
V/FA      :     gmp_version: 9080
...

Solution 5

Latest Update from Firebase Dev Summit from Berlin.Firebase announced Debug view which will display raw data real time updates.

Currently i do not see it in my Firebase console,but hope it will be live for all users soon.

Share:
19,835

Related videos on Youtube

Aawaz Gyawali
Author by

Aawaz Gyawali

Android developer with knowledge of MySQL and php.

Updated on July 09, 2022

Comments

  • Aawaz Gyawali
    Aawaz Gyawali almost 2 years

    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.

  • Aawaz Gyawali
    Aawaz Gyawali about 8 years
    Sir, is there a chance for this feature to arrive soon?
  • AlexioVay
    AlexioVay about 8 years
    Do you know about any information that Google planned implemting the real time feature? Otherwise I think it's better to implement Google Analytics again.
  • AlexioVay
    AlexioVay about 8 years
    Wondering the same
  • infiniteloop
    infiniteloop over 7 years
    Firebase has revealed further information on DebugView in the documentation. firebase.google.com/docs/analytics/debugview
  • deadfish
    deadfish over 7 years
    link to video about debugView youtube.com/watch?v=zssCC6rXyGk&t=22m40s
  • infiniteloop
    infiniteloop over 7 years
    As announced in the Firebase Blog article, DebugView is now in closed beta, anyone can sign-up here if interested.
  • Admin
    Admin over 7 years
    Link only answers are discouraged on StackOverflow. At a minimum provide the relevant 'meat' of the information found in the linked content.
  • Chrstpsln
    Chrstpsln about 7 years
    March, 2017 : This answer is obsolete, the answer of @quarezz is the right one.
  • Frank van Puffelen
    Frank van Puffelen about 7 years
    @Christophe while DebugView shows near real time events, it is a different use-case than what OP asked for. I added some info to my answer to explain the difference.
  • Vito Valov
    Vito Valov about 7 years
    April 2017: Now you can see Production real users (not only debug test devices) with StreamView like @mpolat said. support.google.com/firebase/answer/7229836?hl=en
  • Frank van Puffelen
    Frank van Puffelen about 7 years
    @VitoValov StreamView has also been generally available since February. But StreamView relies on the regular interval of when devices send their analytics events to the Firebase servers. DebugView on the other hand send the analytics events from the device to the servers almost immediately, making it much more suitable for debug purposes. Also see firebase.googleblog.com/2016/11/…
  • Jayakrishnan
    Jayakrishnan about 7 years
    i think it is better to stick with Google Analytics till firebase becomes really real time (without 30mins delay).
  • Muhammed Refaat
    Muhammed Refaat over 4 years
    There is no way to get the screen tracking live data?