Skip to main content
Google Analytics for Firebase is an event-tracking tool provided for free by Google Firebase. It allows you to easily track events within your app and analyze them later using various filters.
This integration does not support UTM parameters to the launch URL.On Web, the GA code will capture the values based on URL in the browser.On Mobile, you will need to capture these values and pass to GA. Our Notification Opened Event Handler can be used to get the notification payload.

Events

The OneSignal SDK tracks events that pertain to notification open & receive events. The following events are sent: The OneSignal SDK also sends parameters which contain more info about the particular notification the event is attributed to:

Setup OneSignal events integration with Google Analytics for Firebase

Setup Firebase

Follow the Firebase integration documentation and verify that Firebase is correctly functioning inside your application.

Enable Firebase in OneSignal

Navigate to Data > Integrations and enable “Firebase”. This will begin sending event data to Firebase. If you wish to track influenced opens on iOS, you will need to perform some additional setup due to limitations in Firebase.

Firebase enabled in OneSignal

Verify OneSignal events

1

Check your app logs

Verify that Firebase is attempting to send events related to OneSignal notificationsCheck in your application’s LogCat logs and look for Google Analytics for Firebase entries that indicate events corresponding to OneSignal are being sent. Look for os_notification_opened,os_notification_received, or os_notification_influence_open

Firebase events in LogCat

2

Go to the Firebase console

Go to the Firebase Console for your project

Firebase console

3

Follow the DebugView Setup Guide

Follow the DebugView Setup GuideThe DebugView allows ADB to send Firebase events to your project when it’s in debug mode. Here is a great video on this for iOS: https://youtu.be/kpkW78OSbiw?t=289Example Debug Logs
Xcode logs example
4

Check the DebugView

As OneSignal events propagate, they will appear in real-time on the DebugView

DebugView

Your application has been verified to track OneSignal notification events through Google Analytics for Firebase!

FAQ

Why are the clicked and opened events not showing in Firebase?

The Firebase click event os_notification_opened and received event os_notification_received may not work if the Firebase library has not initialized in time so the Firebase library drops the event. More details on this github issue.
Link your Firebase Database and use Firebase Cloud Functions with OneSignal following our Firebase Setup Tutorial.