summaryrefslogtreecommitdiff
path: root/benchmark/idle_clients.js
blob: da96b8ac654db4cc0773b26d9270db74b1fbcb16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
net = require('net');

var errors = 0, connections = 0;

var lastClose = 0;

function connect () {
  process.nextTick(function () {
    var s = net.Stream();
    var gotConnected = false;
    s.connect(9000);

    s.on('connect', function () {
      gotConnected = true;
      connections++;
      connect();
    });

    s.on('close', function () {
      if (gotConnected) connections--;
      lastClose = new Date();
    });

    s.on('error', function () {
      errors++;
    });
  });
}

connect();


var oldConnections, oldErrors;

// Try to start new connections every so often
setInterval(connect, 5000);

setInterval(function () {
  if (oldConnections != connections) {
    oldConnections = connections;
    console.log("CLIENT %d connections: %d", process.pid, connections);
  }

  if (oldErrors != errors) {
    oldErrors = errors;
    console.log("CLIENT %d errors: %d", process.pid, errors);
  }
}, 1000);