Reputation: 761
Hosting with Azure, an Ubuntu 12.04 instance running node.js and socket.io. What tools or methods are available to me for measuring websocket performance. In particular, I am most interested in understanding the maximum number of connections I can reasonably support.
Upvotes: 1
Views: 1415
Reputation: 24138
There is a command line tool of Open Source named tcpkali
on GitHub, please see https://github.com/machinezone/tcpkali.
You can enable the websocket option via --ws
or --websocket
, then specify the connection number and the interval time of sending messages for it, and send stats to StatsD or DataDog to help analysising performance.
Upvotes: 1
Reputation: 130
http://www.neotys.com/blog/load-performance-testing-websocket-technology/ Its a good commercial tool for testing WebSocket performance.
Upvotes: 1