Number of connected sockets

How Can i See the number of currently connected sockets to server? Is this the goroutines var in the console?

@SinaZK The goroutine count is a superset of all lightweight threads active in the server whereas the presence counts is what you want to use to see the number socket connections although even that is a superset because multiple chat channels open for the player over the socket count as additional presences.

I’ll take it to the team for us to add a view which displays the number of active socket connections. It’s good feedback. Thanks :+1:

1 Like

@SinaZK This is already available in the devconsole. The node list on the Status page has a column called Sessions - this is the currently connected realtime socket count you’re looking for.

1 Like