How much time does it take for firebase analytics first report?

前端 未结 7 1802
萌比男神i
萌比男神i 2020-11-29 06:59

We wanted to try out the new analytics capabilities provided by firebase, and followed all the steps in the getting started guide.

We \'ve run the app, logged a lot

7条回答
  •  抹茶落季
    2020-11-29 07:39

    From the moment an event is logged it might take up to an hour for the event to be uploaded to Firebase Analytics server. First open is normally uploaded within 15 seconds after the app starts but the exact time depends on many factors. You can enable debug logging to verify the events are logged and uploaded.

    On Android:

    adb shell setprop log.tag.FA VERBOSE
    adb shell setprop log.tag.FA-SVC VERBOSE
    adb logcat -v time -s FA FA-SVC
    

    On iOS:

    1. In Xcode, select Product > Scheme > Edit scheme...
    2. Select Run from the left menu.
    3. Select the Arguments tab.
    4. In the Arguments Passed On Launch section, add -FIRAnalyticsDebugEnabled.

    Once the data is uploaded it takes about 3 hours for it to appear in the dashboard.

    The export to BugQuery runs once a day so you need 24 hours to see the data after the events were uploaded.

提交回复
热议问题