Step-by-step: How to add OWOX Tag
The OWOX Tag for GTM Server-Side allows you to automatically forward GA4 events to a BigQuery table if you use GTM SS as a Server-Side Tag Manager for GA4 events so that you can collect GA4 raw data for further processing within your data warehouse. This allows you to define new events without adjusting the schema in BigQuery first.
Step 1. Create an appropriate table in your Google BigQuery
Firstly, you need to create a Google BigQuery table with a specified schema for collecting raw data into it. Follow these three simple steps.
1.1. Create a dataset in a GBQ project
1.2. Choose a data location
1.3. Create a table with the following schema
Field name | Type | Mode |
---|---|---|
rawDataOwox | STRING | REQUIRED |
createdAt | TIMESTAMP | REQUIRED |
The fastest way is to run the SQL code below in GBQ:
CREATE TABLE IF NOT EXISTS [project_name].[dataset_name].ga4RawDataOwox (rawDataOwox STRING NOT NULL, createdAt TIMESTAMP NOT NULL) OPTIONS(description="GA4 Raw data transferred directly to GBQ from my server-side GTM using OWOX tag")
[project_name].[dataset_name]
Step 2. Adding the tag from Templates to your Workspace
We have published OWOX Tag in the Templates Gallery. Therefore, you can find it and add it to your Workspace in a few steps.
2.1. Open Search Gallery
Go to Templates→Tag Templates→Search Gallery in your Server-side GTM container
2.2. Find and choose the “Google Analytics 4 RawData to BigQuery” tag
2.3. Add it to your workspace:
Step 3. Adding the tag
Go to Tags and add this tag. Choose a needed trigger and set the path to your table in GBQ.
Note! Check the checkbox “Enable logging” only for debugging.
As long as your Server container runs in the same GCP project with the BigQuery table, you are all set. You don’t need to do anything in terms of authentication, as the default service account of App Engine has the fullest access to any BigQuery tables added to the project.
Step 4. Publishing
Submit and Publish the changes and test the flow in Preview mode. If everything is correct, you’ll see a fired tag “Google Analytics 4 RawData to BigQuery”:
And you will see the data in the Google BigQuery table:
How to use this data
Unlock a better way to work with your marketing data...
In the demo, you will discuss a complex and clear analytics workflow to achieve higher ROI and lower ad spending with accurate reporting and insights. After the demo, you’ll receive a customized solution for reaching your business goals.
...or write your own SQL code
Write SQL code to use this data in a convenient structure for your reports. Example:
SELECT
JSON_EXTRACT_SCALAR(rawDataOwox, '$.page_referrer') AS page_referrer,
JSON_EXTRACT_SCALAR(rawDataOwox, '$.page_title') AS page_title,
JSON_EXTRACT_SCALAR(rawDataOwox, '$.event_name') AS event_name,
JSON_EXTRACT_SCALAR(rawDataOwox, '$.user_agent') AS user_agent
FROM `[project_name].[dataset_name].ga4RawDataOwox`
Contact us bi@owox.com to use our tools (and professional services) to transform raw data into business-ready data.
Possible issues
BigQuery insert error: BigQuery API has not been used in a project
Problem: You have not enabled “BigQuery API” in your GCP project. If so, you’ll see the following error in your console:
How to solve: Follow the suggested link and enable API for your GCP project.
BigQuery insert error: Access Denied
Problem: The GCP project with your Server-Side GTM container differs from the GCP project with the GBQ table set in tag settings. If so, you’ll see the following error in a console:
How to solve: If you want to write to a BigQuery table in another GCP project, you need to do the following.
- Find the App Engine default service account (under APIs & Services / Credentials) of the Server container project.
- Copy the email address of this service account to the clipboard.
- In the IAM of the GCP project with the BigQuery table add a new member.
- Set the email address of the member to the email address in the clipboard.
- Set the role of this new member to BigQuery Data Editor.
0 Comments