Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add limitation 'Event Type is Page' #5503

Merged
merged 3 commits into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ Google may take [24-48 hours](https://support.google.com/analytics/answer/933379
### Data is not sent to Google

In order for data to be sent downstream to Google Analytics, check your mappings to ensure that:
1. The **setConfigurationFields** mapping is enabled in your mappings
2. You've added at least one other event mapping for an event you want to send to Google Analytics.
1. The **setConfigurationFields** mapping is enabled in your mappings.
2. You've added at least one other event mapping for an event you want to send to Google Analytics.
3. Your event mapping doesn't use the condition 'Event Type is Page'. The GA config command uses a Page event when your page loads, so Page calls can't be used for triggering additional events in GA4. Segment recommends using a [Track call](/docs/connections/spec/track/) for any additional events you'd like to appear in GA4 so your events can go through after the initial 'config' loads.

The **setConfigurationFields** mapping is required in order for data to be sent downstream. If no other mappings are enabled, the destination does not send events.

Expand Down
Loading