Ross Barbish
Ross Barbish

Reputation: 679

iOS Firebase Events Don't Show in BigQuery but do in Google Analytics and Firebase Console

I'm having an issue with Firebase Events from my iOS app in that they are missing from BigQuery (Events Table) but show up in the Firebase Console and Google Analytics dashboard. Android does not have this issue for a custom event of a similar name. The event we are looking for is "ar_video_launch_ios" but the issue is the same for all iOS events.

Firebase - Shows iOS events: enter image description here

Google Analytics - Shows iOS events: enter image description here

BigQuery iOS - Missing iOS events: enter image description here

BigQuery Android - Android event of similar name exists: enter image description here

Running "Firebase/Analytics" Cocoapod v7.8.0.

The query I'm using is:

SELECT * FROM `<event_table_name>` where event_name like '%_ios%' LIMIT 1000

The same query is used to successfully pull the android events using '%_android%' so the data seems to be missing from the events table entirely. Any ideas?

Upvotes: 0

Views: 1135

Answers (1)

Raman Maurya
Raman Maurya

Reputation: 66

This happens because the app export for iOS apps is not enabled in the BigQuery firebase integration.

Follow these steps to troubleshoot:

  1. Sign in to Firebase.
  2. Click the Settings icon, then select Project Settings.
  3. On the Project Settings page, click the Integrations tab.
  4. On the BigQuery card, click View Link.
  5. Now check in Google Analytics within Exported integrations
  6. In exporting_apps, Select all Apps including your iOS apps

You can directly access BigQuery integration page with this link https://console.firebase.google.com/project/YourProjectNameHere/settings/integrations/bigquery

ps: You need Owner access to perform these steps.

Upvotes: 5

Related Questions