firebase-analytics

Null User Id's recorded by firebase

痞子三分冷 提交于 2019-12-01 21:05:05
We are linking our firebase analytics data to BigQuery and upon analyzing found that the user id's are null for several users. In what scenarios can this happen? and what is the solution for the same. The bad behavior was when the user_id property was populated with a value. The property user_id should be null except if you set it explicitly with a call to that function: android function: setUserId(...) ios function: setUserId(...) If you don't explicitly call setUserId , which is common, then the id you should use in BigQuery would be the app_instance_id . My advice: call setUserId once you

Can I get firebase analytics data using query?

こ雲淡風輕ζ 提交于 2019-12-01 17:22:30
How can I get firebase analytics data using HTTP request or api? I want to show firebase analytics data on my website You can't directly do this from http or api. But you need to export to BigQuery and there you can query the data. I am not much aware of hoe BigQuery works and how you can fetch and show data on websites but you can not do this in your free plan. You can export war analytics data to BigQuery in BLAZE plan . And then you can query from the BigQuery database. Google BigQuery, access to project (here you'll write SQL queries to fetch data): https://bigquery.cloud.google.com

What the difference in firebase-core and firebase-analytics libraray?

陌路散爱 提交于 2019-12-01 15:26:36
Google recently released new verison of Firebase. So I was trying to migrateto Firebase analytics. So what is the difference between these libraries com.google.firebase:firebase-analytics:9.0.0 and com.google.firebase:firebase-core:9.0.0 I found that core is for analytics too. So whats the difference? Which should I use. Currently there is no difference. The firebase-core:9.0.0 has no classes and resources in the aar file and contains the firebase-analytics as you can check in the pom file. <modelVersion>4.0.0</modelVersion> <groupId>com.google.firebase</groupId> <artifactId>firebase-core<

How do I delete user analytics data from Firebase using userDeletionRequests:upsert?

微笑、不失礼 提交于 2019-12-01 15:22:00
Problem Description My Android app collects data via Google Analytics for Firebase. For privacy reasons, users must be able to wipe their data off the Firebase servers, should they choose to do so. The app requests a deletion by forwarding its Firebase APP_INSTANCE_ID to my own server. This server has been prepared in advance with credentials, from my personal Google account (via oauth2), for managing the Firebase project. The server authenticates with www.googleapis.com , and, using the supplied APP_INSTANCE_ID , invokes the upsert. As noted by the documentation , the generic Google Analytics

How to group events parameters by event on firebase?

谁说我不能喝 提交于 2019-12-01 15:02:47
I'm working in a react native application that uses analytics using react-native-firebase, I had something like this: Analytics.logEvent('event_click', { target: 'accept', screen:'MainScreen' }); What I want on firebase, is to group the 'target' by 'screen' param for example or simply to see the params grouped and not separately. Thank you! There are automatic registered events on Firebase that track the screen views, look at this source . I recommend to organize your events according to this picture to get better insights about the information you need and also check the limitations about

Firebase Analytics events dont show values

南楼画角 提交于 2019-12-01 12:52:12
I am new in Firebase and I am trying to understand it, I want to track whitch achievements( by my id) my users unlocks I saw lot of post about this like this where it says Currently, parameter reporting is offered only on a subset of suggested events. If you need to access your custom parameters, you can link your app to BigQuery and run queries on the raw data there. So as far as I understand, It should show the values of the suggested events,but I dont even get that values, I am getting the events but not the values, My console shows no values. I am doing something bad on the code? I am

Firebase BigQuery Event Reporting in Data Studio

落爺英雄遲暮 提交于 2019-12-01 12:19:14
问题 I would like to create two dynamic weekly BigQuery Firebase Reports, reflecting the most recent 12 Weeks of data for: Event Occurrences per Week DISTINCT Users who triggered Event Occurrences per Week The inspiration for these reports came from a Tableau-report I saw online: I am trying to create dynamic timestamps to pull the values of 1.count of event.name and 2.distinct user_dim.app_info.app_instance_id . My First Iteration: SELECT event.name as event_name, COUNT(CASE WHEN _TABLE_SUFFIX >=

firebase Analytics : Android app uninstall stats

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 10:58:53
I installed Firebase SDK and add below two lines to MainActivity.java private FirebaseAnalytics mFirebaseAnalytics; mFirebaseAnalytics = FirebaseAnalytics.getInstance(this); I need uninstall stats (app_remove event) - like which device user uninstalled the app. Do I need to add more firebase api or is this setup enough? To get the app_remove stats, there is no need to add any Java code. Whenever user uninstalls an app, it gets updated in the console under events section. 来源: https://stackoverflow.com/questions/39239646/firebase-analytics-android-app-uninstall-stats

firebase Analytics : Android app uninstall stats

蓝咒 提交于 2019-12-01 06:59:51
问题 I installed Firebase SDK and add below two lines to MainActivity.java private FirebaseAnalytics mFirebaseAnalytics; mFirebaseAnalytics = FirebaseAnalytics.getInstance(this); I need uninstall stats (app_remove event) - like which device user uninstalled the app. Do I need to add more firebase api or is this setup enough? 回答1: To get the app_remove stats, there is no need to add any Java code. Whenever user uninstalls an app, it gets updated in the console under events section. 来源: https:/

newbie bigquery how to select multiple parameters from an firebase event (schema record, repeated)

ε祈祈猫儿з 提交于 2019-12-01 04:16:48
问题 I am trying to select to parameters from firebase events named "SCI_ERROR" I am new new Firebase and BigQuery. I watched the Firebase BigQuery video tutorial. I think maybe it is a little out of date? I tried using several posted solutions I found on stackOverflow. I could never run them because of errors. I assume best practice is use the 'standard query' syntax. I think where I am running into trouble is that all the examples I have seen suggest there is a table 'event_dims' . when I look