Google Universal Analytics Event Tracking
This guides shows two methods for tracking custom events in the Google Universal Analytics tag in your iQ Tag Management account.
As of July 1, 2023, Google Universal Analytics properties stopped processing hits. This tag has been deprecated and no longer available in the tag marketplace. For the current tag, see Google Analytics 4.
Overview
There are two main methods for configuring custom events for Google Universal Analytics (GUA) in your iQ Tag Management account. The first method uses data mapping to set each event attribute individually. This is the most common approach and cover the majority of scenarios. The second method uses JavaScript and is more advanced, but allows you to trigger multiple events at once.
- Single Events Using Data Mapping
- Multiple Events Using “GA Events” Array
Tracking events with data mapping
This method uses data mapping to map your data layer variables to the required GUA event variables (learn more about event fields expected by Google Analytics). It requires creating variables for each of the GUA event fields:
- eventCategory
- eventAction
- eventLabel
- eventValue
Because these variables will be specific to GUA we recommend that you prefix the names with “ga_” to easily distinguish them from your other event variables. You will then use a Set Data Values extension to set the GUA event variables to the expected values for each event.
Follow these steps to configure GUA event tracking using data mapping:
- Create Event Variables
Create a variable for each of the GUA event fields. (Learn more about adding data layer variables.)
- ga_eventaction
- ga_eventCategory
- ga_eventLabel
- ga_eventValue
- Add Data Mappings
Add a data mapping for each variable to the corresponding GUA field. (Learn more about data mappings.) - Add a Set Data Values Extension
For each event to be tracked in GUA, you will add a Set Data Values extension to set the GUA event variables to the expected values and uses a condition that identifies the event.
These extensions only set GUA variables, so scope them to the GUA tag.
In this example, the condition identifies when the video_play
event occurs on the Fall Promo
video.
Save and publish to test your changes.
Tracking events with GA events array
This method uses a special array variable from the GUA tag template called ga_events
that lets you trigger multiple events in one call or bypass mapping. This method uses just one mapping for ga_events
then relies on JavaScript code to push GUA event objects. This method is convenient if your implementation tracks a lot of custom events in GUA because it allows you to set the GUA variables and events directly rather than configuring them as extensions and mappings.
This method is only supported in Google Universal Analytics.
Follow these steps to use the ga_events
array for GUA event tracking:
- Create a new data layer variable named
ga_events_array
. - In the GUA tag, add a data mapping from to
ga_events_array
toga_events
. - Use the following code in a Javascript Code extension as a template to set the
ga_events_array
variable. Set the scope to All Tags or your GUA tag.:
b.ga_events_array = [
{eventCategory:"cat1", eventAction:"action1", eventLabel:"label1", eventValue:"1"},
{eventCategory:"cat2", eventAction:"action2", eventLabel:"label2", eventValue:"2"}
]
Converting GUA Tracking to Tealium Tracking
This method also makes it simple to convert existing GUA event tracking to Tealium tracking.
Example GUA code snippet for event tracking:
ga('send', {
hitType : 'event',
eventCategory : 'Videos',
eventAction : 'play',
eventLabel : 'Fall Campaign'
});
You can maintain the basic naming convention and convert this to Tealium tracking by setting the ga_events
variable with the GUA event fields:
utag.link({
ga_events : [{
eventCategory : 'Videos',
eventAction : 'play',
eventLabel : 'Fall Campaign'
}]
});
This approach bypasses the need for a mapping by setting the GUA tag template variable directly.
This page was last updated: July 17, 2023