firebase-analytics

Can't I view Real Time users on firebase?

折月煮酒 提交于 2019-11-30 08:04:28
I used to use Admob analytics to view my users activity. There I was able to view real time app running users. Now when I upgraded to the Firebase, I don't find any real time user stats. Does firebase has real time users stat feature? Thanks in advance. There currently is no equivalent to Google Analytics' real time tracking of user information available in Firebase Analytics. Update (February 2017) : Firebase added DebugView to its Analytics product. This allows you to see a near realtime stream of the events from a specific device. Note that (as its name implies) this feature is most useful

Firebase Analytics Rest API

本秂侑毒 提交于 2019-11-29 18:49:22
I am trying to get firebase analytics data using Rest API but as per best of my knowledge, I need Profile ID to get analytics data. To get profile ID there needs to be a property and view under GA Dashboard which seems like not to be supported for firebase analytics app. Please let me know how can I get analytics data for firebase app using REST API? Thanks! There is no REST API for Google Analytics for Firebase. You have to export your data to BigQuery, then you can do what you want with it from there. 来源: https://stackoverflow.com/questions/50974885/firebase-analytics-rest-api

How to select multiple custom Firebase event parameters in BigQuery?

女生的网名这么多〃 提交于 2019-11-29 18:28:26
问题 I exported Firebase events to BigQuery and now I'm trying to select two parameters from a certain event. Here is the query for selecting one parameter: select event_dim.params.value.int_value as level_id from [com_company_appname_ANDROID.app_events_20161210] where event_dim.name = "level_replays_until_first_victory" and event_dim.params.key = "level_id" Both parameters are int values, name of the first parameter is level_id , and the second parameter is count . What I would like is to show is

Firebase Analytics, unable to view the values that are passed in the event

浪子不回头ぞ 提交于 2019-11-29 17:57:24
I am implementing Firebase Analytics in my app. Everything works fine, I am getting the logged events in my Firebase console, but I am having trouble with the bundle data (Params) that are passed during the logging of event. Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.VALUE, "event Value"); firebaseAnalytics.logEvent(FirebaseAnalyticsConstants.ON_VIEW_EVENT, bundle); I want to differentiate based on the VALUE param. The VALUE parameter is meant to be numeric. See the documentation on it here . Of course, you can log any custom parameter you want with your event, but

Firebase: Dashboard / Audiences probable bug?

这一生的挚爱 提交于 2019-11-29 17:18:36
Ok I'm pretty new to firebase and analytics but I'm seeing some kind of incongruency between what the dashboard is showing me and what the Audiences tab shows me. Dashboard: and the Audiences (predefined Audience All Users): Any ideas if I'm looking at this the wrong way or if it's just a bug? Thanks!! The threshold of 10 is actually based on Advertising Identifiers (and not Analytics "users"). And so, if your set of 13 Monthly Active Users has fewer than 10 Advertising Identifiers among them (for example, if you just uninstalled/re-installed 13 times on one device), the report will still not

Firebase analytics event logging in multi-process app

ε祈祈猫儿з 提交于 2019-11-29 16:03:40
I have integrated Firebase analytics into my app which has two process : a Background process and a UI process. What I experienced using Firebase was that I'm able to log events from the UI process but not from the Background process. I can see through Firebase logs on the Android Studio console that though the events are logged but are never scheduled to be uploaded on the Firebase console when being logged from the Background process. Is this a behaviour that Firebase analytics follows - logging events only from a single process? If so, then how does it decide from which process to log

Firebase Root View Controller Not Found Warning

故事扮演 提交于 2019-11-29 14:56:45
问题 I got a strange warning from Firebase Analytics today. It is: <Warning> [Firebase/Analytics][I-ACS031011] Root view controller not found The methods I am using is basically deleting a post and then displaying a status bar notification to the user that the post is deleted. This is the method that is called when we want to delete a post. HomeViewNetwork.deletePost(postBlock: self.postDataBlock, handler: { AlertManager.showStatusRed(title: "Post deleted!") }) And my displaying status function is

Firebase Analytics upload delay

爷,独闯天下 提交于 2019-11-29 13:45:08
问题 Is there any way to increase Firebase Analytics upload rate for logged events on android? Currently it uploads them every hour and it is too slow for testing purposes. I found references to following keys (with hardcoded defaults) in jars, but no idea how to change them. "measurement.upload.backoff_period", 43200000L "measurement.upload.window_interval", 3600000L "measurement.upload.interval", 3600000L 回答1: There is currently no way to manually override these settings. However, we recognize

Firebase trace showing wrong median time latency?

半腔热情 提交于 2019-11-29 12:45:39
I am adding Firebase performance trace in my app and below image is data for last 24 Hrs As you can see the Median is 647ms , where as 95% time latency is 14.81s and for 5% it is 460ms . How can the median be 647ms , it should be near around 14 sec? Am I missing something here? Edit - In below image data is for last 7 days As you can see in last 24 Hrs I had data where 95th percentile was 14.81s , but how can in last 7 days graph there is no mention of the 14 secs trace? all traces are below 5.95s ? Also in the distribution image latency is between 460 ms to 2.94s but as 95th percentile in

framework not found FirebaseAnalytics

99封情书 提交于 2019-11-29 11:03:42
问题 I added Google Analytics by CocoaPod into my project, but my app crashed and gave the following error. ld: framework not found FirebaseAnalytics clang: error: linker command failed with exit code 1 (use -v to see invocation) What should i do to solve this issue ? I followed this tutorial from google to integrate the Google Analytics into my project. 回答1: You are probably using cocoapods to add Firebase. Make sure that in the build settings for your target the 'Framework Search Paths' both for