firebase-analytics

Android Firebase Analytics Custom Events Reporting in Console

亡梦爱人 提交于 2019-11-26 16:48:42
问题 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

Firebase analytics from remote REST API?

笑着哭i 提交于 2019-11-26 14:50:05
问题 Is it possible to have Firebase analytics hook into a remote REST API endpoint? More concretely, suppose I have a remote REST API, with an endpoint that computes the average number of videos each of my users has uploaded, /api/videos/get_average_count . Can I somehow integrate that statistic into Firebase analytics? (I don't think there is a reporting API in Firebase analytics?) Alternatively, is there anyway, I can take the Firebase data from the other analytics (tracked at the frontend) and

How can i use the NEW Firebase Analytics feature with a webapp?

自古美人都是妖i 提交于 2019-11-26 13:48:28
问题 So at google i/o 2016, google announced firebase analytics feature, I currently only have a webapp on firebase, how i can use that feature? OR will I have to resort to something like Amplitude(Web and mobile Analytics) 回答1: Firebase Analytics supports iOS, Android and (since September 2019) Web. 回答2: This was just announced at I/O 2019 and is in beta: https://firebase.google.com/docs/perf-mon/get-started-web 来源: https://stackoverflow.com/questions/37330412/how-can-i-use-the-new-firebase

How to disable/remove FirebaseAnalytics

戏子无情 提交于 2019-11-26 11:26:59
问题 I update \'Google/Analytics\' from CocoaPod and get FirebaseAnalytics. After that, each time I run project, the FirebaseAnalytics turns out many error loggings. Currently I don\'t use this library and want to remove it. Unfortunately I can\'t find any way to disable / remove it out of Pod. Here is the Podfile configuration target \'myApp\' do inhibit_all_warnings! use_frameworks! pod \'Google/Analytics\' end Console log: <FIRAnalytics/DEBUG> Debug mode is on <FIRAnalytics/INFO> Firebase

Using Firebase in .NET

此生再无相见时 提交于 2019-11-26 09:00:44
问题 I want to implement Firebase into my .NET WPF Desktop Application. I can\'t find anything useful on the internet about this topic, it seems like it\'s completely unsupported. There is only a Xamarin NuGet package. Is there any possibility to do this? The goal is to implement Firebas Analytics for several actions the user makes in the app. I would even take the normal REST endpoints if I could find them - they are hidden somewhere... The question is about Firebase Analytics, not Firebase Admin

Is there any api for dashboard analytics data?

狂风中的少年 提交于 2019-11-26 02:58:45
问题 Is there any way i can query in my app for data from the analytics tab of dashboard? For example: ref.on(\"value\", function(dashboard) { console.log(dashboard.concurrentUsers) }); 回答1: From the "dashboard.concurrentUsers" in your question, it looks like you're trying to get the data from the Analytics tab of your dashboard. There is no public API to get the analytics data, although you can export the data to a CSV file manually from the Firebase console. What you can do is enable the

Firebase Analytics custom events params

社会主义新天地 提交于 2019-11-26 01:49:38
问题 I am completely new to Firebase analytics. I am trying to send an event which shows statistics about my API call. endTime = System.currentTimeMillis() - startTime; // [START event] Bundle params = new Bundle(); params.putString(FirebaseConstants.PHONE_NUMBER, Utility.getPhone()); params.putLong(FirebaseConstants.DURATION, endTime); FirebaseAnalytics .getInstance(getContext()) .logEvent(FirebaseConstants.BALANCE_CHECK, params); // [END event] But I only see the name of the event, number of