Hello, dear community!
I have several Firebase projects.
All projects are connected to one BQ.
Each firebase project has one application.
I have events from each project. Like "analytics_<id>.events_20240519" for everyone
And then one application was added to one FireBase project. To smoothly move from the old to the new
And at the moment, every application has users.
However, the events come to BQ only from the old application.
And events do not come from the new.
What could be the reason for this error? I would appreciate any help!
Solved! Go to Solution.
It sounds like the new application added to your Firebase project is not properly configured to send events to BigQuery. Here are some possible reasons and steps to troubleshoot the issue:
Firebase Configuration:
BigQuery Export Configuration:
API and SDK Integration:
Event Logging:
Permissions and Access:
Monitoring and Debugging:
Steps to Troubleshoot:
Verify Firebase Project Linking:
Check BigQuery Export Configuration:
Validate SDK Integration:
// Initialize Firebase
var firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_PROJECT_ID.firebaseapp.com",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_PROJECT_ID.appspot.com",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
appId: "YOUR_APP_ID",
measurementId: "YOUR_MEASUREMENT_ID"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
Use DebugView:
Check Logs and Errors:
It sounds like the new application added to your Firebase project is not properly configured to send events to BigQuery. Here are some possible reasons and steps to troubleshoot the issue:
Firebase Configuration:
BigQuery Export Configuration:
API and SDK Integration:
Event Logging:
Permissions and Access:
Monitoring and Debugging:
Steps to Troubleshoot:
Verify Firebase Project Linking:
Check BigQuery Export Configuration:
Validate SDK Integration:
// Initialize Firebase
var firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_PROJECT_ID.firebaseapp.com",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_PROJECT_ID.appspot.com",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
appId: "YOUR_APP_ID",
measurementId: "YOUR_MEASUREMENT_ID"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
Use DebugView:
Check Logs and Errors:
Thank you so much for your help, ms4446!
After going through each item of your hint, we managed to find out that previously unknown Analytics was connected to Firebase.
And from there, the export was not connected.