Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Console View Bundle detail values

I'm aware of Google Analytics for capturing the stats etc in android app.

Recently migrated to firbease Console and setup couple of Bundle Id's as mention in Firebase Document https://firebase.google.com/docs/analytics/android/events problem is I don't see rest of bundle Id only see primary ID.

Can you please guide where to see rest of values in firebase console ( values i'm looking for are QuizName, Questions, CorrectAnswers, CorrectAnsRatio)

I can see these data correctly send in logcat but don't see QuizName, Questions in firebase console. Only see UserData value. Am i missing anything?

//Log analytics result into bundle
        Bundle bundle = new Bundle();
        Player player = PreferencesHelper.getPlayer(getActivity());
        bundle.putString("QuizName",mCategory.getName());
        bundle.putString("Questions",Integer.toString(iCount));
        bundle.putInt("CorrectAnswers",iSolve);
        bundle.putFloat("CorrectAnsRatio",(float)(iSolve *100.0)/iCount);
        mFirebaseAnalytics.logEvent("UserData",bundle);

enter image description here

like image 811
Amod Gokhale Avatar asked May 12 '26 17:05

Amod Gokhale


1 Answers

Actually you can't view that raw data directly in Firebase Analytics Console. But you can use those to create audiences. I didn't remember but this was also said in one of the Firebase Dev Summit analytics event(may be in this one).

However, you can export it to the BigQuery (only in BLAZE plan) and then there you can query the data however you want. There was also a talk about this in recent firebase dev summit. (https://youtu.be/zssCC6rXyGk?t=18m21s)

like image 51
kirtan403 Avatar answered May 15 '26 09:05

kirtan403



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!