Concurrent Users

Through the Gamepot dashboard, you can easily check the concurrent users (CCU) who have logged in to the Gamepot SDK.

Tracking concurrent users within the game SDK is an important metric for evaluating game performance and user experience. To support this, we provide a free socket server that automatically connects to the server upon client connection and collects and analyzes data every minute.

How to Use

The user count starts automatically when the user logs in through the Gamepot SDK without the need for additional calls.

Manual Connection

If you want to manually manage user aggregation, you must set setAutoConnect(false). The default setting is true. This must be configured before login to work properly. It is recommended to execute it before initialize.

To connect to the server, call the following method:

NBase.setAutoConnect(false)
NBase.connect()

Disconnect

To disconnect from the user aggregation server, call the following method:

NBase.disconnect()

Last updated