Skip to main content

GA cookies tracking

If this plugin is used, the tracker will look for Google Analytics cookies (GA4/Universal Analytics and "classic" GA; specifically the _ga cookie and older __utma, __utmb, __utmc, __utmv, __utmz) and combine their values into event context entities that get sent with every event.

GA cookies information is automatically tracked once configured.

Install pluginโ€‹

Tracker DistributionIncluded
sp.jsโœ…
sp.lite.jsโŒ

Download:

Download from GitHub Releases (Recommended)Github Releases (plugins.umd.zip)
Available on jsDelivrjsDelivr (latest)
Available on unpkgunpkg (latest)

Note: The links to the CDNs above point to the current latest version. You should pin to a specific version when integrating this plugin on your website if you are using a third party CDN in production.

Initializationโ€‹

window.snowplow('addPlugin',
"https://cdn.jsdelivr.net/npm/@snowplow/browser-plugin-ga-cookies@latest/dist/index.umd.min.js",
["snowplowGaCookies", "GaCookiesPlugin"],
[pluginOptions] // note: for sp.js, pluginOptions can also be specified when calling `newTracker`; e.g. `contexts: { gaCookies: { ua: true, ga4: false } }`
);

The pluginOptions parameter allows to configure the plugin. Its type is:

interface GACookiesPluginOptions {
ua?: boolean;
ga4?: boolean;
ga4MeasurementId?: string | string[];
cookiePrefix?: string | string[];
}
NameDefaultDescription
uafalseSend Universal Analytics specific cookie values.
ga4trueSend Google Analytics 4 specific cookie values.
ga4MeasurementId""Measurement id(s) to search the Google Analytics 4 session cookie. Can be a single measurement id as a string or an array of measurement id strings. The cookie has the form of <cookie_prefix>_ga_<container-id> where <container-id> is the data stream container id and <cookie_prefix> is the optional cookie_prefix option of the gtag.js tracker.
cookiePrefix[]Cookie prefix set on the Google Analytics 4 cookies using the cookie_prefix option of the gtag.js tracker.

Context entitiesโ€‹

Adding this plugin will automatically capture the following entities:

  1. For GA4 cookies: iglu:com.google.ga4/cookies/jsonschema/1-0-0 (default)

    {
    "_ga": "G-1234",
    "cookie_prefix": "prefix",
    "session_cookies": [
    {
    "measurement_id": "G-1234",
    "session_cookie": "567"
    }
    ]
    }
  2. For Universal Analytics cookies: iglu:com.google.analytics/cookies/jsonschema/1-0-0 (if enabled)

    {
    "_ga": "GA1.2.3.4"
    }