With the Convert-Piano integration, unique visitors to your experiments’ variations will be passed into Piano using custom events.
Piano Analytics(formerly AT Internet) is a privacy-friendly analytics service that is an attractive alternative to Google Analytics. It only stores data that enables a simple analysis of visits to your website. In doing so, Piano does not track the user across multiple websites (does not store cross-site cookies).
Read more about how you can use Piano as an alternative to GA.
Instructions of the integration:
This example code can send Experiment and Variation names/IDs to your Piano Analytics dashboard:
var refObject = window['convert']['data']['experiments'] for (var key in window["convert"]["currentData"]["experiments"]) { if (!window["convert"]["currentData"]["experiments"].hasOwnProperty(key)) { continue; }} var currentExperiment = window["convert"]["currentData"]["experiments"][key]; var curExperimentName = refObject[key] && refObject[key].n ? refObject[key].n : "unknown experiment name"; curExperimentName = curExperimentName.replace("Test #", "Test "); var curVariant = currentExperiment['variation_name'] ? currentExperiment['variation_name'] : "unknown variant"; curVariant = curVariant.replace("Var #", "Variation "); pa.sendEvent('Convert Experiences', { Exp_Name: curExperimentName, Var_Name: curVariant });