Check the current number of client connections
Running php start.php status
allows you to view the current status of the Workerman server. The connections
field indicates the current TCP connection count for each process. It is important to note that this field includes not only the TCP connections from clients, but also the TCP connections for internal communication within Workerman. For example, in the Gateway/Worker model of Workerman, the current client connection count for each Gateway process is the value of the connections
field minus the number of Worker processes.