@deriv/analytics
The analytics package contains all the utility functions used for tracking user events and sending them to the respective platform such as Rudderstack and GrowthBook.
In this document
What is Analytics?
Cross-project, connected user tracking events with A/B testing features
Installation
To install the package, run the following command:
$ npm i @deriv/analytics
To proper initialisation of the package, pass proper keys in special function in special for init functions place:
Analytics?.initialise({
growthbookKey: process.env.GROWTHBOOK_CLIENT_KEY,
growthbookDecryptionKey: process.env.GROWTHBOOK_DECRYPTION_KEY,
rudderstackKey: RUDDERSTACK_KEY,
})
To make good strategy for A/B testing we need to create some condition depends on data:
Analytics?.setAttributes({
user_language: getLanguage(),
device_language: navigator?.language,
country: this.country,
})
And you finally can use the tracking events and A/B testing features
Usage
To start using it, let's observe on SDK usage examples:
import { Analytics } from '@deriv/analytics';
Analytics?.identifyEvent()
Analytics?.pageView()
const user_id = Analytics?.getId()
Analytics?.trackEvent('ce_virtual_signup_form', {
action: 'open',
form_name: 'default_diel_deriv',
form_source: document?.referrer,
signup_provider: 'email',
})
const analyticsData: Parameters<typeof Analytics.trackEvent>[1] = {
form_name: 'default_diel_deriv',
}
Analytics?.trackEvent('ce_virtual_signup_form', {
action: 'open',
signup_provider: 'email',
...analyticsData
})
Analytics?.trackEvent('ce_virtual_signup_form', {
action: 'close',
signup_provider: 'google',
...analyticsData
})
const test_toggle_aa_test = Analytics?.getFeatureState('test-toggle-aa-test')
const common_test = Analytics?.getFeatureValue('common-test', 'fallback')
If you need to get entire instance directly:
const { ab, tracking } = Analytics?.getInstances()
If you want to check your ID
window.getMyId()