Besides pageviews, Boost is also able to track events that occur on your Website or Program. There are two ways to record events in Boost, using the data attributes property or using JavaScript.
When the user clicks on this button, Boost will record an event named Signup button.You can optionally pass along event_data with the data-boost-event-* annotation.
The additional properties will result in { email: 'bob@aol.com', id: '123' }being recorded with the Signup button name.Event data cannot be sent without an event name.
All event data will be saved as a string using this method. If you want to save event data as numeric, dates, booleans, etc. use the JavaScript method below.
Other event listeners inside the element will not be triggered.
Your custom data can be accessed under the Properties tab on the Events page. This section will show you all the custom data properties you saved as well as a breakdown of all the values.