Create customized events to analyze your users.
fullog.track()
accepts a String like a topic to the eventβs name. javascriptimport 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.
javascriptimport 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.