Initialization and configuration
Tracker initialization is started by calling the "newTracker"
function and takes three arguments:
- The tracker namespace (
sp
in the below example) - The collector endpoint
- An optional configuration object containing other settings
Here is a simple example of how to initialise a tracker, setting a few configuration options:
- JavaScript (tag)
- Browser (npm)
snowplow('newTracker', 'sp', '{{collector_url_here}}', {
appId: 'my-app-id',
discoverRootDomain: true, // default, can be omitted
cookieSameSite: 'Lax', // Recommended
contexts: {
webPage: true // default, can be omitted
}
});
newTracker('sp', '{{collector_url_here}}', {
appId: 'my-app-id',
discoverRootDomain: true, // default, can be omitted
cookieSameSite: 'Lax', // Recommended
contexts: {
webPage: true // default, can be omitted
}
});
The tracker will be named sp
(tracker namespace) and will send events to the a collector url you specify by replacing {{collector_url_here}}
. The final argument is the configuration object. Here it is just used to set the app ID and the common webPage context for each event. Each event the tracker sends will have an app ID field set to “my-app-id”.
If newTracker
is called multiple times with the same namespace, only the first call is taken into account.
Initialize one tracker per initial page load.
The following table shows all the various configuration parameters. Note that these are all optional. In fact, you aren’t required to provide any configuration object at all.
Property | Description | Default (if applicable) | Type |
---|---|---|---|
appId | Set the application ID. | string | |
platform | Set the application platform. | "web" | string enum |
cookieDomain | Set the cookie domain. | ||
discoverRootDomain | Automatic discovery and setting of the root domain, to facilitate tracking over multiple subdomains. | true | boolean |
cookieName | Set the cookie name. | string | |
cookieSameSite | Set the cookie samesite attribute. | null | string enum |
cookieSecure | Set the cookie secure attribute. | true | boolean |
encodeBase64 | Enable Base64 encoding for JSONs (context entities and custom self-describing events). | true for GET, false for POST requests | boolean |
respectDoNotTrack | Choose to respect browser Do Not Track option. | false | boolean |
eventMethod | Choose to send events by GET, POST. | post | string enum |
bufferSize | How many events to send in one request. | 1 | int |
maxPostBytes | Set a limit for the size of one request. | 40000 | int |
maxGetBytes | Set a limit for the size of one request. | int | |
postPath | Change the collector POST path. | string | |
crossDomainLinker | Decorate links for cross-domain tracking. | function | |
cookieLifetime | Set the cookie lifetime. | 63072000 s (2 years) | int |
stateStorageStrategy | How to store tracker state. | cookieAndLocalStorage | string enum |
maxLocalStorageQueueSize | How many events to queue in local storage when they are failing to send. | 1000 | int |
resetActivityTrackingOnPageView | Choose to reset page ping timers when a page view is tracked. | true | boolean |
connectionTimeout | Set request connection timeout. | 5000 ms | int |
anonymousTracking | Do not track user identifiers. | false | boolean |
customHeaders | Add custom headers to requests. | object | |
credentials | Choose whether to include cookies in certain collector requests. | include | string enum |
contexts | Configure context entities to add to all events. | various | object |
retryStatusCodes | Set HTTP response codes to retry requests on. | [int] | |
dontRetryStatusCodes | Set HTTP response codes not to retry requests on. | [int] | |
retryFailedRequests | Choose to retry failed requests or not. | true | boolean |
onSessionUpdateCallback | A callback to run every time the session updates. | function | |
onRequestSuccess | A callback to run every time a request is successfully sent to the collector. | function | |
onRequestFailure | A callback to run every time a request fails to send. | function | |
preservePageViewIdForUrl | Option to change when a new page view ID is generated. Makes it possible to generate a new page view on URL change instead of when tracking a page view, which enables tracking events before the page view event with the same ID. | false | false , true , full , pathname , pathnameAndSearch |
customFetch | Enables overriding the default fetch function with a custom implementation. | function | |
eventStore | Enables providing a custom EventStore implementation to store events before sending them to the collector. | object | |
keepalive | Indicates that the request should be allowed to outlive the webpage that initiated it. Enables collector requests to complete even if the page is closed or navigated away from. | boolean | false |
synchronousCookieWrite | Whether to write the cookies synchronously. | boolean | false |
Here is a longer code example in which every tracker configuration parameter is set:
- JavaScript (tag)
- Browser (npm)
snowplow('newTracker', 'sp', '{{collector_url_here}}', {
appId: 'my-app-id',
platform: 'web',
cookieDomain: null,
discoverRootDomain: true,
cookieName: '_sp_',
cookieSameSite: 'Lax', // Recommended
cookieSecure: true,
encodeBase64: true,
respectDoNotTrack: false,
eventMethod: 'post',
bufferSize: 1,
maxPostBytes: 40000,
maxGetBytes: 1000, // available in v3.4+
postPath: '/custom/path', // Collector must be configured
crossDomainLinker: function (linkElement) {
return (linkElement.href === 'http://acme.de' || linkElement.id === 'crossDomainLink');
},
cookieLifetime: 63072000,
stateStorageStrategy: 'cookieAndLocalStorage',
maxLocalStorageQueueSize: 1000,
resetActivityTrackingOnPageView: true,
connectionTimeout: 5000,
anonymousTracking: false,
// anonymousTracking: { withSessionTracking: true },
// anonymousTracking: { withSessionTracking: true, withServerAnonymisation: true },
customHeaders: {}, // Use with caution. Available from v3.2.0+
credentials: 'include', // Available from v4+
contexts: {
webPage: true, // Default
session: false, // Adds client session context entity to events, off by default. Available in v3.5+.
browser: false, // Adds browser context entity to events, off by default. Available in v3.9+.
performanceNavigationTiming: true, // Adds performance navigation timing entity. Available in v4.0.2+
performanceTiming: true,
gaCookies: true,
// gaCookies: { ga4: true, ua: false, ga4MeasurementId: "", cookiePrefix: "_ga_" }, // Optional
geolocation: false,
clientHints: true,
// clientHints: { includeHighEntropy: true }, // Optional
},
retryStatusCodes: [],
dontRetryStatusCodes: [],
retryFailedRequests: true,
onSessionUpdateCallback: function(clientSession) { }, // Allows the addition of a callback, whenever a new session is generated. Available in v3.11+.
onRequestSuccess: function(data) => { }, // Available in v3.18.1+
onRequestFailure: function(data) => { }, // Available in v3.18.1+
keepalive: false, // Introduced in v4
customFetch: undefined, // Introduced in v4
eventStore: undefined, // Introduced in v4
});
newTracker('sp', '{{collector_url_here}}', {
appId: 'my-app-id',
platform: 'web',
cookieDomain: null,
discoverRootDomain: true,
cookieName: '_sp_',
cookieSameSite: 'Lax', // Recommended
cookieSecure: true,
encodeBase64: true,
respectDoNotTrack: false,
eventMethod: 'post',
bufferSize: 1,
maxPostBytes: 40000,
maxGetBytes: 1000, // available in v3.4+
postPath: '/custom/path', // Collector must be configured
crossDomainLinker: function (linkElement) {
return (linkElement.href === 'http://acme.de' || linkElement.id === 'crossDomainLink');
},
cookieLifetime: 63072000,
stateStorageStrategy: 'cookieAndLocalStorage',
maxLocalStorageQueueSize: 1000,
resetActivityTrackingOnPageView: true,
connectionTimeout: 5000,
anonymousTracking: false,
// anonymousTracking: { withSessionTracking: true },
// anonymousTracking: { withSessionTracking: true, withServerAnonymisation: true },
customHeaders: {}, // Use with caution. Available from v3.2.0+
credentials: 'include', // Available from v4+
contexts: {
webPage: true, // Default
session: false, // Adds client session context entity to events, off by default. Available in v3.5+.
browser: false // Adds browser context entity to events, off by default. Available in v3.9+.
},
retryStatusCodes: [],
dontRetryStatusCodes: [],
retryFailedRequests: true,
onSessionUpdateCallback: function(clientSession) { }, // Allows the addition of a callback, whenever a new session is generated. Available in v3.11+.
onRequestSuccess: function(data) => { }, // Available in v3.18.1+
onRequestFailure: function(data) => { }, // Available in v3.18.1+
keepalive: false, // Introduced in v4
customFetch: undefined, // Introduced in v4
eventStore: undefined, // Introduced in v4
});
You can further extend the tracker functionality by installing plugins. Read more about them here.