Identity Events #
The Identities > Events tab enables you to view a chronological history of all actions associated with a particular identity. You can view when a play session began and ended, and all the events and achievements (e.g. joined a group, unlocked a new character, received a reward, etc.) that occurred in between.
The actions displayed are specific, predefined events in your game, enabling you to capture any details desired to understand and improve the player experience, engagement, and ultimate success of your game.
Default events #
There are a number of default events - events that do not need to be manually configured - available in Satori:
Event | Type |
---|---|
adStarted | string |
appLaunched | string |
gameFinished | string |
gameStarted | numeric |
purchaseCompleted | numeric |
screenViewed | string |
tutorialCompleted | string |
tutorialStarted | string |
tutorialStepCompleted | numeric |
A series of computed properties are automatically generated and tracked per identity for each of these default events, so long as the event is fired by the client.
Server-side events #
The default events are tracked by the Satori SDK, and are sent to Satori from the client. However, there are three events tracked that can only be sent from the server and cannot be submitted from the client:
Event | Description |
---|---|
_identityCreate | The Satori identity was created. |
_sessionStart | A new play session has started. |
_identify | The Satori identity, and its session, are enriched and identified with the user’s (now authenticated) identity. |
These events are used in situations where players have not yet authenticated with your game server, but you still want to track their activity. For example, if a player is playing your game as a guest, and then later authenticates with your game server. See an example.