Skip to main content

Measuring Experiments

Using Autocapture

Sidecar comes loaded with an event collection tool that will autocapture various web activities, allowing you to create both simple and complex Metrics within Statsig console without writing a line of code.

Autocapture tracks the following events and properties automatically:

Captured across all events

Propertydescriptionexample value (strings)
valueUrl of the current pagehttps://www.example.com/utm=FALL_2024
tagNameTag name of the target elementbutton

auto_capture::click

Propertydescriptionexample value (strings)
metadata.contentinnerText value of the clicked elementAdd to Cart
metadata.page_urlCurrent URL with path and parametershttps://www.example.com/?utm=FALL_2024
metadata.hrefLink to url if tag is <a>https://www.target-url.com/
metadata.[dataset keys]Data set values expandedmetadata.attributionKey=demoLink

auto_capture::page_view

Propertydescriptionexample value (strings)
metadata.queryParamsA json representation of query string params{\"utm\":\"FALL_2024\"}
metadata.referrerURL of the prior pagehttps://www.google.com
metadata.titleTitle of the current webpage from <title>Homepage
metadata.screen_widthWidth of the current screen in pixels3440
metadata.screen_heightHeight of the current screen in pixels1440
metadata.viewport_widthWidth of the browser window in pixels960
metadata.viewport_heightHeight of the browser window in pixels600

auto_capture::page_view_end

Propertydescriptionexample value (strings)
valueCurrent URL with path and parametershttps://www.FULL-URL.com/?utm=FALL_2024
metadata.pageViewLengthtotal number of milliseconds spent on the page61370
metadata.scrollDepthpercentage of page scrolled (integer 0-100)47

auto_capture::form_submit

Propertydescriptionexample value (strings)
valueFixed string"form"
metadata.actionaction attribute on the form element/submit.php
metadata.formIdid attribute on the form elementuser-info
metadata.formNamename attribute on the form elementuser-info
metadata.methodHttp method on the form elementPOST

auto_capture::performance

Propertydescriptionexample value (strings)
metadata.dom_interactive_time_msTime until DOM is qualified as interactive as implemented by browser performanceTiming API1807.90
metadata.first_contentful_paint_time_msFirst contentful paint metric as implemented by browser performanceTiming API1523.90
metadata.load_time_msTotal load time as implemented by browser performanceTiming API2766.90
metadata.page_urlCurrent URL with path and parametershttps://www.FULL-URL.com/?utm=FALL_2024
metadata.transfer_bytesTotal number of bytes transferred in document body as implemented by browser performanceTiming API48360

Disabling All Logging

To disable all logging to statsig (both autocapture events and logging who has seen your experiments) append the following query string parameter to the Sidecar script URL: &autostart=0. This may be useful if you're dealing with GDPR compliance, and you can later re-enable events with client.updateRuntimeOptions({disableLogging: false})

Auto Capturing Data Attributes

Data attribute tags will automatically be added to the event metadata object. Note that this is available for click events only for now!

The metadata will be in the format of data-(camelCasedAttributeName). For example:

<button data-button-attribute="important button attribute">Add to Cart</button>
<a href="/checkout" data-a-tag-attribute="important a tag attribute">Checkout</a>

Metadata on the events tab will be

{
"content": "Add to Cart",
"data-buttonAttribute": "important button attribute",
"page_url": "http://localhost:4200/",
"sessionID": "7ccb4e03-3599-443e-8d41-4b89f7168728",
"tagName": "button"
}
{
"content": "Checkout",
"data-aTagAttribute": "important a tag attribute",
"href": "/checkout",
"page_url": "http://localhost:4200/",
"sessionID": "7ccb4e03-3599-443e-8d41-4b89f7168728",
"tagName": "a"
}

Using the tracking API

You can track events manually for actions that are not autocaptured by the feature described above. To track events back to Statsig, you can call StatsigSidecar.logEvent which takes the same arguments as the Statsig JS SDK as documented here. This method can be called prior to completion of the init routine.

// example order event
StatsigSidecar.logEvent('Order', null, {
total: 54.66,
units: 3,
unitAvgCost: 18.22
});

Post-Experiment Callback for outbound integrations

You can bind a callback that gets invoked after Sidecar has run experiments (also gets called when there are no experiments), allowing you to run code that processes the experiment assignments as needed.

This method should be defined anywhere prior to the Sidecar client script.

window.postExperimentCallback = function(statsigClient, experimentIds) {
/**
* add your own callback routine here
* ie; annotating 3rd party analytics tools with assignment info

var evarValue = [];
experimentIds.forEach(function(expId) {
var inExp = statsigClient.getExperiment(expId, { disableExposureLog: true }).groupName;
if(inExp) {
evarValue.push(expId + ':' + inExp);
}
});
evarValue = evarValue.join(',');
*/
}