Firebase 控制台查看 Bundle 详细信息值
Firebase Console View Bundle detail values
我知道 Google 用于在 android 应用程序中捕获统计信息等的分析。
最近迁移到 firbease 控制台并设置了几个 Bundle Id,如 Firebase 文档中所述 https://firebase.google.com/docs/analytics/android/events 问题是我看不到其余的 bundle Id,只看到主 ID。
能否请您指导在 firebase 控制台中的何处查看其余值(我正在寻找的值是 QuizName、Questions、CorrectAnswers、CorrectAnsRatio)
我可以看到这些数据在 logcat 中正确发送,但在 firebase 控制台中看不到 QuizName、Questions。只看到 UserData 值。
我错过了什么吗?
//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);
实际上,您无法直接在 Firebase Analytics 控制台中查看原始数据。但是您可以使用这些来创建受众。我不记得了,但这在 Firebase Dev Summit 分析活动之一中也说过(可能在 this one)。
但是,您可以将其导出到 BigQuery(仅在 BLAZE 计划中),然后在那里您可以根据需要查询数据。在最近的 firebase 开发者峰会上也讨论了这个问题。 (https://youtu.be/zssCC6rXyGk?t=18m21s)
我知道 Google 用于在 android 应用程序中捕获统计信息等的分析。
最近迁移到 firbease 控制台并设置了几个 Bundle Id,如 Firebase 文档中所述 https://firebase.google.com/docs/analytics/android/events 问题是我看不到其余的 bundle Id,只看到主 ID。
能否请您指导在 firebase 控制台中的何处查看其余值(我正在寻找的值是 QuizName、Questions、CorrectAnswers、CorrectAnsRatio)
我可以看到这些数据在 logcat 中正确发送,但在 firebase 控制台中看不到 QuizName、Questions。只看到 UserData 值。 我错过了什么吗?
//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);
实际上,您无法直接在 Firebase Analytics 控制台中查看原始数据。但是您可以使用这些来创建受众。我不记得了,但这在 Firebase Dev Summit 分析活动之一中也说过(可能在 this one)。
但是,您可以将其导出到 BigQuery(仅在 BLAZE 计划中),然后在那里您可以根据需要查询数据。在最近的 firebase 开发者峰会上也讨论了这个问题。 (https://youtu.be/zssCC6rXyGk?t=18m21s)