firebase-analytics

Do we need to update container's json file in Android side everytime we change in Google Tag Manager tag

谁说我不能喝 提交于 2019-12-11 05:54:01
问题 I was learning Google Tag Manager. I have started with very basic tutorials, it is working nice. But one thing I dont get is the use of container json in android side. Suppose we have created the firebase analytics in android and added GTM and published the app. In GTM we have added some tags. Now later we want to send analytics to some other site or wish to add new tags, do we need to update container json file in android again and republish it. 回答1: The JSON container file you're talking

Firebase: analyze “post score” events

扶醉桌前 提交于 2019-12-11 05:47:25
问题 Firebase provides a default event type for posting game scores. It includes parameters for the game level, character and score that was posted. However, viewing this event in the Firebase analytics console I can't see the level/character/score data anywhere, though I can see the total number of "post score" events. How can I analyze e.g. the distribution of scores, or the average level achieved per game, etc? 回答1: Not all predefined event params are reflected in reports. You have a couple of

Sessions-per-User Distribution-table in Firebase

这一生的挚爱 提交于 2019-12-11 05:38:06
问题 This is a second post (a follow-up from my first post) on looking at distributions within Firebase Analytics Data. This time around, I want to create a user distribution table in BigQuery based on Firebase Session Data. The output should look like this: I managed to create the following script to count on app_instance_id's: #standardSQL SELECT COUNT(DISTINCT(CASE WHEN sess_id = 0 THEN app_instance_id END)) AS sess_count_0, COUNT(DISTINCT(CASE WHEN sess_id = 1 THEN app_instance_id END)) AS

Can I track my Firebase function in Google Analytics?

我的梦境 提交于 2019-12-11 05:37:42
问题 Is there any way to perform Server-side event tracking? Every call to my Firebase function, has to go through multiple steps. I couldn't monitor it through console logs. Actually I need to prepare an report at end of every week and month. Looking for the better way to do this. Is there any better tool available other than Google Analytics? Appreciate your help! 回答1: There is no server-side API for Google Analytics for Firebase. Some options to consider: Insert events directly from the clients

Firebase analytic counts user less than actuality

送分小仙女□ 提交于 2019-12-11 05:27:53
问题 I Have a app that loaded for statics with FireBase and TapStream. My app is not distributed from google play or other app stores. I should pay third party corporation that shared my app per installation. The count of install declared by third-party is about to TapSteram statics count. but unfortunately Firebase is so different. ( I check firebase Firest-open event for new install). for example: Third-party says people installed (or click for download your app) are 300 TapStream says that

Google Firebase / BigQuery - no previous data available

牧云@^-^@ 提交于 2019-12-11 05:11:38
问题 Recently we have linked our Firebase project with BigQuery. But there are no previous (before linking) events data displayed in BigQuery console. Is there a way to get previous data? 回答1: Firebase Analytics events will be inserted into BigQuery from the moment you connect the two. There is no way to get the events from before you connected them. 来源: https://stackoverflow.com/questions/40802963/google-firebase-bigquery-no-previous-data-available

Firebase Event Occurrences for New Installed Users in Bigquery

做~自己de王妃 提交于 2019-12-11 04:49:01
问题 Given the install date of users, I would like to get the Firebase (1) Event Occurrences and (2) Event Distinct Users' Count for all our 200+ Firebase events on Day0 to Day30. I simulated the output table below (for D0-D30) in a screenshot, but the code is only for Day0-Day7. (1) Event Occurrences SELECT event.name as event_name, COUNT(CASE WHEN _TABLE_SUFFIX >= '20170801' AND _TABLE_SUFFIX < '20170802' THEN event_count END) AS D0_USERS, COUNT(CASE WHEN _TABLE_SUFFIX >= '20170802' AND _TABLE

Get Firebase event Params for cordova ionic app

て烟熏妆下的殇ゞ 提交于 2019-12-11 04:43:31
问题 I using Ionic 2 to create my app, also I am using the cordova-plugin-firebase for analytics. The plugin works great and I am seeing events in my firebase dashboard. But I am unable to see the event parameters that I send. As mentioned in the docs of the plugin I am using the following code to log events and event Params. window.FirebasePlugin.logEvent("page_view", {page: "dashboard"}); Going through the Firebase docs it is mentioned that Event Params are not shown directly but should appear

How to get the correct acces token for Firebase Dynamic Link Analytics Rest API (NodeJS)

喜欢而已 提交于 2019-12-11 04:26:26
问题 I have a problem with my access_token which I get with the serveracceskey. Here is my code in NodeJS: const admin = require('firebase-admin'); var request = require("request"); const serviceAccount = require('./serverAccountKey.json'); const credential = admin.credential.cert(serviceAccount); credential.getAccessToken().then((accessTokenInfo) => { const accessToken = accessTokenInfo.access_token; const expirationTime = accessTokenInfo.expires_in; console.log("accessToken " + accessToken );

Firebase Analytics: export data to BigQuery as a date

我是研究僧i 提交于 2019-12-11 02:17:48
问题 I'm trying to log events and specify the moment these moments happened. For example: Firebase.Analytics.FirebaseAnalytics.LogEvent ("EventGamePlayed", "sent_at", DateTime.Now.ToString ("yyyy-MM-dd hh:mm:ss")); I would like to know if it's possible that, once it's exported to BigQuery, I could use this parameter as a date / timestamp so I can, for example, get all the X or Y events that happened last month. Thanks! 回答1: You probably don't need this, actually. Referring to the Firebase schema