1

で超基本的なhttpリクエストアプリをやっていnode.jsます。

var http = require('http');

var options = {
  host: 'www.domain-here.com',
  port: 80,
  path: '/index.html'
};

for(var i = 0; i < 500; i++) {
    http.get(options, function(res) {
            console.log("[" + this.count + "] Response: " + res.statusCode);
    }.bind({ count: i })).on('error', function(e) {
            console.log("[" + this.count + "] Error: " + e.message);
    }.bind({ count: i }));
}

ただし、1 秒あたりの http リクエストの数を取得する必要があります。毎秒リクエストを取得する方法はありますか?

4

2 に答える 2

3
// begin timestamp
var begin = new Date();

for(var i = 0; i < 500; i++) {
    http.get(options, function(res) {
            console.log("[" + this.count + "] Response: " + res.statusCode);
    }.bind({ count: i })).on('error', function(e) {
            console.log("[" + this.count + "] Error: " + e.message);
    }.bind({ count: i }));
}

// end timestamp
var end = new Date();

// Then, you need a simple calculation
var reqPerSec = i / ( end - begin );
于 2012-09-24T07:51:16.917 に答える
0

オブジェクトを使用しDateて時間を記録し、後で数値を分析します。

または、setIntervalリアルタイム データが必要な場合は、カウンタ変数と組み合わせて使用​​できます。

于 2012-09-24T07:44:29.020 に答える