firebase-analytics

Completely disable Firebase/Analytics to stop console spam on app startup

本秂侑毒 提交于 2019-11-27 16:02:44
问题 I've installed Google/SignIn cocoapod into my application (which I need to support GoogleDrive), but it depends on Google/Core which depends on FirebaseAnalytics. I don't want or need FirebaseAnalytics. FirebaseAnalytics spams the developer console with 8 lines of output when our app starts: 2017-06-07 18:07:19.612994+0100 son[2909:877661] [Firebase/Analytics][I-ACS005000] The AdSupport Framework is not currently linked. Some features will not function properly. Learn more at http://gooX.gl

How to get an export of firebase analytics full historic data?

廉价感情. 提交于 2019-11-27 15:24:41
I have setup Firebase analytics data to BigQuery. However I received my first export today and it contains all yesterdays user statistics. That is great but I need lifetime statistics history or at least last month's data. Do I already have access to my entire historic analytics data threw Big Query but I and I do not know how to access it? If so can you point to documentation or give a quick walk threw? Is it even possible to get the full (or at least a longer period than a day) historic analytics data? Bonus question: Can I directly access data that is used in Firebase analytics console?

How to export Firebase analytics data

别等时光非礼了梦想. 提交于 2019-11-27 15:06:38
I'm trying to figure out if it's possible to export all the Firebase Analytics data to an excel spreadsheet, similar to how you can do it with Google Analytics. From what I can find the only way to go about doing it is to link with BigQuery then do some SQL statements to build a table and export. Unfortunately for us this is not going to work (due to client budget and capabilities). Is there any other way to export this data that I'm missing? Steve Ganem Update : You can now export the analytics reports as CSV from the Firebase console by clicking the Download CSV option from the ⠇ overflow

How to calculate Session and Session duration in Firebase Analytics raw data?

时间秒杀一切 提交于 2019-11-27 14:50:18
How to calculate Session Duration in Firebase analytics raw data which is linked to BigQuery? I have used the following blog to calculate the users by using the flatten command for the events which are nested within each record, but I would like to know how to proceed with in calculating the Session and Session duration by country and time. (I have many apps configured, but if you could help me with the SQL query for calculating the session duration and session, It would be of immense help) Google Blog on using Firebase and big query First you need to define a session - in the following query

V/FA: Processing queued up service tasks: 1 followed by V/FA: Inactivity, disconnecting from AppMeasurementService

时间秒杀一切 提交于 2019-11-27 14:46:38
As it is visible in the console output below, the application usually needs 7-10 seconds to process the service and often fails to do it. This happens on every startup. Why is it taking so long? Is it because the service is trying to connect multiple times before giving up? Also, what is actually the logic behind this output? Note: I don't have any FirebaseAnalytics code in my application 09-26 23:34:48.998 /package V/FA: Processing queued up service tasks: 1 09-26 23:34:54.009 /package V/FA: Inactivity, disconnecting from AppMeasurementService 09-26 23:34:57.357 /package V/FA: Activity paused

Android Firebase Analytics Custom Events Reporting in Console

风格不统一 提交于 2019-11-27 14:34:34
Accept my apologies in advance if this is the incorrect place to post this question as I am unsure what would be. What I am trying to accomplish is to record a custom even using Firebase analytics that produces a similar report in the Firebase console to their example of the select_content event. It is triggered as follows: FirebaseAnalytics mFirebaseAnalytics = FirebaseAnalytics.getInstance(this); Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.ITEM_ID, "ID"); bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, "NAME"); bundle.putString(FirebaseAnalytics.Param.CONTENT

How event “first_open” in firebase analytic count?

最后都变了- 提交于 2019-11-27 13:48:39
问题 In my firebase analytic event "first_open" shows 489 download till 7th july but in play store stats it shows 347 download till 7th july, i don't know why these no. is differ. Definition of first_open is:- When a user opens the app for the first time. This event is not triggered when a user downloads the app onto a device, but instead when he or she first uses it. To see raw download numbers, look in Google Play Developer Console or in iTunesConnect. But when user open my app for first time is

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

[亡魂溺海] 提交于 2019-11-27 09:00:51
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 of events and its been a few hours; yet there is no data on the dashboard - We just see a banner saying "Your analytics data will appear here soon" How much time does it take to get our first reports, events, etc.? It takes a few hours. I would say it takes like 4 hours or something like that, based on current experiments. Firebase says that it can take up to 24h hours, but the docs says that the dashboard updates "a few times every

How to use scheduler for Firebase Cloud Functions with Realtime Database/Analytics triggers?

杀马特。学长 韩版系。学妹 提交于 2019-11-27 07:26:41
问题 I'm working on a Firebase Cloud Function, to send triggered push notifications. Right now my function sends a push as soon as an user triggers the "IAP" event in my app. 'use strict'; const functions = require('firebase-functions'); const admin = require('firebase-admin'); admin.initializeApp(functions.config().firebase); exports.sendIAPAnalytics = functions.analytics.event('IAP').onLog((event) => { const user = event.user; const uid = user.userId; // The user ID set via the setUserId API.

How to add Firebase custom events for analytics?

谁说胖子不能爱 提交于 2019-11-27 06:35:28
问题 I've seen some questions and answers about custom events for firebase analytics, but i just wanted to ask you a straight question so you can give me a straight answer :) So, this is my method for logging: @Override public void logFeatureSelectedEvent(String categoryName, String actionName, String labelName) { Bundle bundle = new Bundle(); bundle.putString(EventTrackingKeys.EventTypes.CATEGORY, categoryName); bundle.putString(EventTrackingKeys.EventTypes.ACTION, actionName); bundle.putString