logo
Create customized events to analyze your users.
fullog.track() accepts a String like a topic to the event’s name.
javascript
import fullog from '@fullog/browser' fullog.track("STEP 1");
You can also pass a second Object topic having the properties that you want to associate with the event.
javascript
import fullog from '@fullog/browser' fullog.track("STEP 1", { productSku: 9876522, value: 80.22 });
This event will be available on the Analytics area so you can make analyses and save them on your Dashboard.
SHARE