207 questions
0
votes
1
answer
99
views
Angular Fire 19 performance not reporting to console
Problem
I'm having trouble getting performance monitoring, built into the sdk (https://firebase.google.com/docs/perf-mon/page-load-traces), to show up in the Firebase Console.
What I've tried
I've ...
0
votes
0
answers
21
views
Firebase performance requests tracking
I have integrated Firebase Performance and HTTP/S methods tracking works great out of the box.
But the problem is that I have multiple requests with the same path but different HTTP method. Firebase ...
2
votes
1
answer
377
views
Firebase performance monitoring does not trace my network request
package:
http: ^1.2.0
I'm using http package for my network request.
I want to implement the performance monitoring in my flutter app.
once user successfully logged in at the time firebase ...
3
votes
0
answers
97
views
Not getting Firebase Performance Monitoring Alerts emails
I have integrated the Firebase Performance Monitoring SDK into an Android App. I have made some rest api calls and I can see those response traces also in Performance Dashboard.
I used the app for a ...
-1
votes
1
answer
179
views
Do I Need to Add android.permission.ACCESS_NETWORK_STATE for Firebase Analytics?
Do I need to add android.permission.ACCESS_NETWORK_STATE for Firebase Analytics?
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
0
votes
1
answer
76
views
Do i Need to Add android.permission.INTERNET for Firebase Analytics?
Do i need to add android.permission.INTERNET for Firebase Analytics?
<uses-permission android:name="android.permission.INTERNET" />
0
votes
1
answer
1k
views
Plugin id: 'com.google.firebase.firebase-perf was not found in any of the following sources
I am trying to implement network logging via firebase.
I have followed the steps here, however I am getting the following error when syncing gradle:
* Exception is:
org.gradle.api.plugins....
4
votes
0
answers
700
views
What is _app_start in firebase performance actually measuring?
According to this documentation, the measurement of _app_start
Starts when the app's FirebasePerfProvider ContentProvider completes its onCreate method.
Stops when the first activity's onResume() ...
0
votes
2
answers
1k
views
Update to Firebase BoM later than 32.1.1 in Android App
I am trying to update all firebase libraries I have in my Android project to 32.3.1.
implementation platform('com.google.firebase:firebase-bom:32.3.1')
implementation 'com.google.firebase:firebase-...
0
votes
0
answers
342
views
Does Firebase-perf plugin supports AGP 8.0 and later?
I'm trying to use a Firebase performance in AGP 8.1.0 project, but having a problem below:
An exception occurred applying plugin request [id: 'com.google.firebase.firebase-perf']
> Failed to apply ...
0
votes
1
answer
1k
views
It is possible to get the data from Firebase Performance dashboard?
Basically I cannot find any API for a node environment in order to extract the data from Firebase Performance.
The outcome would be extracting that data in order to integrate it with a Grafana panel.
...
0
votes
1
answer
134
views
Firebase: using trace performance monitoring server side with nodejs error
Here is how I setup performance monitoring on nodejs cloud function context:
const {getPerformance, trace} = require('firebase/performance');
const perf = getPerformance(app);
const t = trace(perf, &...
2
votes
1
answer
1k
views
Unable to add Firebase Performance Plugin for the new Android gradle project structure
I'm trying to add to my Firbebase Performance to my Android project, but the documentation does not explain how to add the classpath on the new gradle.
Where should I write.
classpath 'com.google....
0
votes
0
answers
125
views
Performance monitoring is not working on Xamarin.iOS
Recently I have tried to connect my mobile app to performance monitoring but I haven't got success with it.
I setup Xamarin.Android without any troubles but with iOS the things are sad(
On Firebase....
2
votes
0
answers
174
views
Firebase performance plugin with jetpack compose
Unable to track the slow rendering and frozen frames for compose screens.
I am trying to track slow rendering and frozen frames for the fully compose screens, but firebase is unable to track those ...