这是负载测试的响应,此处并发为1000,请求为100000。
{totalRequests: 100000,
totalErrors: 17642,
totalTimeSeconds: 125.24705887900001,
rps: 798,
meanLatencyMs: 1243.4,
maxLatencyMs: 33727,
minLatencyMs: 7,
percentiles: { '50': 432, '90': 3744, '95': 4061, '99': 5209 },
errorCodes: { '-1': 17642 },
instanceIndex: 0 }
我无法理解错误代码“ -1”是什么意思?
var reqObject = {
url: 'http://localhost:3000/userExists',
maxRequests: 100000,
concurrency: 1000,
headers: {
Cookie: ""
},
method: 'GET'
}
上面是负载测试的请求对象。