AltumAnalytics.js is designed to collect customer data and send it to machine learning service for future processing.
We prefer to associate our library with a smart advisor called Altum.
Altum helps you measure your users, product, and business. It calculates statistic for your business and generate advises about your customers, provide charts and different integrations.
Install from NPM
npm install --save altumanalytics
or if you want to specify version:
npm install --save altumanalytics@version (i.e. npm install --save altumanalytics@1.2.15)
Ideally you would use module loader or compilation step to import using ES6 modules as:
import { Altum } from 'altumanalytics';
Altum.init({productId: 'PRODUCT ID', groupId: 'GROUP_ID', userId: 'USER ID'});
If you prefer CommonJS modules then the library can be included as
const Altum = require('altumanalytics').Altum;
Altum.init({productId: 'PRODUCT ID', groupId: 'GROUP_ID', userId: 'USER ID'});
Altum is exported as the Singleton, so you don't need to create a new instance.
Call Altum.init
to initialize library.
Altum.init(configurationObject);
configurationObject contains next properties:
Property Name | Type | Required | Description |
---|---|---|---|
productId | String | Required | Your unique product Id. Exception will be thrown if not provided. |
groupId | String | Required | Unique identifier per license. |
userId | String | Required | Current signed in userId. (Usually Db Key). |
Note: Altum.init
method can be called several times to change current product or current user.
Init library after user sign in and specify the product:
Altum.init({productId: 'test', groupId: '123', userId: '12345'});
Altum provide only one API method which should be used in your application:
Altum.log(event, count, options);
The Altum.log
method is how you send any event with it's data to our processing center.
The log
call has the folowing parameters:
Parameter Name | Required | Type | Description |
---|---|---|---|
event | Required | String or Object | Event Type which will be used to identificate tracked event. If object provided, it should include property type in it. |
count | Required | Float Number | Positive Number which will be associated with tracked event.Note: If you do not pass a count, pass 1 as default. |
options | Optional | Object | A dictionary of options (see details below). |
Options object may contain next properties:
Property Name | Type | Description |
---|---|---|
data | Object | Any data associated with tracked event. |
time | TimeStamp | js representation of time (example (new Date).getTime() ). If not provided, current UTC time will be used |
groups | Array | Array of groups to categorize event for future using |
Log any custom event:
Altum.log('My Amazing Event', 1)
Log javascript click event:
const eventObj = { type: 'click' }; //here will be js event object
Altum.log(eventObj, 1);
Log event with custom data object:
Altum.log(eventObj, 1, { data: { customProperty: 'customValue' }});
Log event with several groups:
Altum.log('Grouped event', 1, { groups: ['First', 'Second']});
Log historical event:
const historicalTime = (new Date('01-03-2015')).getTime();
Altum.log('Grouped event', 1, { time: historicalTime });
Log user payment event:
Altum.log('Payment', 100.34, { data: { objectId: 'egwg1251f' }, groups: ['Payments'] })