Optimizely Classic
Tracker Distribution | Included |
---|---|
sp.js | โ |
sp.lite.js | โ |
Downloadโ
Download from GitHub Releases (Recommended) | Github Releases (plugins.umd.zip) |
Available on jsDelivr | jsDelivr (latest) |
Available on unpkg | unpkg (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-optimizely@latest/dist/index.umd.min.js",
["snowplowOptimizely", "OptimizelyPlugin"],
[true, true, true, true, true, true, true]
);
The parameter array of booleans is used to initialize the plugin. If you do not include this, all the Optimizely contexts will be included. To alter this behavior you can flip some of the booleans. The array represent enabling the following contexts:
[
summary: boolean,
experiments: boolean,
states: boolean,
variations: boolean,
visitor: boolean,
audiences: boolean,
dimensions: boolean
]
Contextโ
Adding this plugin will automatically capture the following context:
Context |
---|
| iglu:com.optimizely.snowplow/optimizely_summary/jsonschema/1-0-0
iglu:com.optimizely/experiment/jsonschema/1-0-0
iglu:com.optimizely/state/jsonschema/1-0-0
iglu:com.optimizely/variation/jsonschema/1-0-0
iglu:com.optimizely/visitor/jsonschema/1-0-0
iglu:com.optimizely/visitor_audience/jsonschema/1-0-0
iglu:com.optimizely/visitor_dimension/jsonschema/1-0-0 |