pomelo-robot-update
v1.0.3
Published
Pomelo-robot-update is a fork of 'NetEase pomelo-robot', just add some little feature to enhance the robot.
Downloads
3
Readme
update description
pomelo-robot-update add some little feature to enhance the pomelo-robot :
- support node8
- update socket.io from 0.9.13 to 2.1.0
- update socket.io-client from 0.9.11 to 2.1.0
- transform es5 to es6
The usage of pomelo-robot-update is the same as pomelo-robot.
pomelo-robot
pomelo-robot is a simple tool to benchmark the socket.io server's performance.
pomelo-robot can run in multiple mode such as single machine or distributed machines with many processes.
pomelo-robot executes developer's custom javascript in a sand box and statistical analysis monitors including avg(min/max) responsing time and QPS, etc. Then reports data to the http server with graph display.
pomelo-robot can be also used in http benchmark with developer script.
Installation
npm install pomelo-robot-update
Usage
var envConfig = require('./app/config/env.json');
var config = require('./app/config/' + envConfig.env + '/config');
var Robot = require('pomelo-robot-update').Robot;
var robot = new Robot(config);
var mode = 'master';
if (process.argv.length > 2){
mode = process.argv[2];
}
if (mode !== 'master' && mode !== 'client') {
throw new Error(' mode must be master or client');
}
if (mode === 'master') {
robot.runMaster(__filename);
} else {
var script = (process.cwd() + envConfig.script);
robot.runAgent(script);
}
API
robot.runMaster()
run master server and http server, then init server status including clients with startup file.
Arguments
- startupFile - The master server auto startup agent file name, default is current running file;
robot.runAgent()
robot run in client agent mode.
Arguments
- script - The developer's custom script that the agent will execute.
Notice
When pomelo-robot run in distribute mode, every client should be in same directory path and master could be ssh login automatic. Otherwise developer can start up agent manually. For the custom script, refer to the demo.