Send user events
Last updated
Last updated
With the justtrack SDK, you can monitor and record user behaviors as events. These allow you to track how your users are using your app. For each event, you can also specify dimensions which you can later use to filter, sort, and group your events in the dashboard.
In this guide, you'll learn to:
Send predefined events
Send custom events
Await the results of publishing events
With our SDK, you can send predefined events to your justtrack account. These events are defined by justtrack and are given special attention in the platform. For example, some metrics are calculated for you if you send data in certain predefined events.
To send a predefined event, you first create an event object:
Here, JtLevelStartEvent
is a subclass of UserEvent
. It represents a and accepts a single predefined dimension, called "jt_level_name". In this example, you pass the value for that dimension in the constructor.
You can add more dimensions with .addDimension()
:
When you've created and configured an event object, call .publishEvent()
:
This sends the event to the justtrack platform where you can visualize and analyze your data.
Along with predefined events, you can also send custom events to your justtrack account. You define these events yourself and they are not given any special attention in the platform.
To send a custom event, you first create an event object:
Here, you create a custom UserEvent
object and supply an event name, "my_event".
You can add dimensions to your custom event with .addDimension()
:
When you've created and configured an event object, call .publishEvent()
:
This sends the event to the justtrack platform where you can visualize and analyze your data.
Now that you know how to send events to your justtrack account, you can review further details of the UserEvent
class in our .