How to add sections to Nakama dashboard?

Hello,

I was wondering if there’s a way to extend the default Nakama dashboard and add some new sections to it. I’m mainly looking for a way to display some statistics other than the real-time statistics that are already in the panel. Like the total number of matches in the last 24 hours and some other smaller stats. Calculating them within the match handler isn’t complicated. But I’m looking for way to represent them in a easy-to-access place.

Hi @amuuu the Nakama console source code is open source nakama/console at master · heroiclabs/nakama · GitHub so you are certainly welcome to fork it and add the functionality you need. You are also welcome to submit your changes as a pull request if you think it would be useful to other users.

We recommend caution about using Nakama to calculate statistics however, since it should remain a dedicated game server. We recommend using a separate service and dashboard (e.g., Retool) for calculating and displaying metrics/statistics.

1 Like

Thank you! I will look into both @lugehorsam