I am attempting to publish events via FlutterAnalytics but I am experiencing very sporadic behaviour.
- Using latest
firebase_coreandfirebase_analyticspackages - Using Firebase project on PAYG Blaze plan
- Add pushing of events to BigQuery
- Using vanilla
flutter createproject for testing - Downloaded and added
google-services.jsontoandroid/appandandroid/app/debugfolder - Added
firebaseAnalytics.logEvent(name: 'testevent');inonPressedwhere counter is incremented - Click button until counter reaches 100
Expect to see 100 events in Firebase Analytics but I see none.
- Look in StreamView, after 5 minutes a part of them show up, alongside the automatically collected
screen_viewetc. - Look in DebugView (after activating adb) they show up instantly.
- Look in Events tab, nothing
- Look in BigQuery, nothing, not even tables created
They say events don't show up instantly, wait up to 24h, okay:
- Wait 24h, no event in Events tab beyond the automatically collected ones
- No BigQuery table generated
- Wait 48h, no event showing up.
I then proceeded to create several other test firebase projects, with varying degrees of events showing up:
- One project has 12 events out of 100 in BigQuery and 100 in Events tab
- Another project has no events
- Another project has 27 events in Events tab and 12 in BigQuery
Is anybody getting better mileage out of Firebase Analytics ? It cannot be a misconfiguration on my part on a vanilla project as then no events would show up, not this sporadic behaviour across all the projects.