Search


Search something to see results

TrackingOptions

interface TrackingOptions {
    collapseToSingleBeacon?: boolean;
    dataLayer?: string;
    noCookies?: boolean;
    noTracking?: boolean;
    performanceOnly?: boolean;
    reduceBeacons?: boolean;
    stripAllParameter?: boolean;
    stripParameters?: string[];
}

Index

Properties

Properties

collapseToSingleBeacon?: boolean

When set to true, all beacons are collapsed into a single unload beacon when Speed Kit is unsupported. Setting this to false restores standard beacon behavior.

true
dataLayer?: string

Option to specify a custom data layer property if the customer does not use 'dataLayer'.

noCookies?: boolean

When activated, Speed Kit does not use cookies to store data.

false

2.5.1

noTracking?: boolean

When activated, Speed Kit does not send any tracking data.

false

2.5.1

performanceOnly?: boolean

Prevents Speed Kit from storing user and session IDs.

false

2.5.1

reduceBeacons?: boolean

When set to true, the reduced beacons mode feature is activated if the split configuration qualifies (100% rollout, no secondary split).

true
stripAllParameter?: boolean

Strips all parameter of URLs when sending data via RUM tracking. Afterwards the URL looks like this: https://www.baqend.com/page?redacted.

false

2.5.1

stripParameters?: string[]

Strips individual parameter of URLs when sending data via RUM tracking. Afterwards the URL looks like this: https://www.baqend.com/page?redacted-0&notfiltered=foo.

2.7.0