node added uptime history

This commit is contained in:
cubedro 2015-03-27 12:28:55 +02:00
parent 7d0994dc24
commit 0b94a49ac2
2 changed files with 20 additions and 2 deletions

View File

@ -33,7 +33,7 @@ Collection.prototype.inactive = function(id)
if(!node)
return false;
node.stats.active = false;
node.setState(false);
return node.getStats();
}

View File

@ -28,6 +28,15 @@ var Node = function Node(data)
uptime: 0,
lastUpdate: 0
};
this.uptime = {
started: null,
history: []
};
if(this.id === null) {
this.uptime.started = (new Date()).getTime();
this.setState(true);
}
if(typeof data.id !== 'undefined')
this.id = data.id;
@ -66,6 +75,9 @@ Node.prototype.setInfo = function(data)
if(typeof data.spark !== 'undefined')
this.spark = data.spark;
if(this.uptime.history.length > 0 && this.uptime.history[this.uptime.history.length - 1].status == 'down')
this.setState(true);
}
Node.prototype.getInfo = function()
@ -77,7 +89,7 @@ Node.prototype.setStats = function(stats)
{
if(typeof stats !== undefined && typeof stats.block !== undefined && typeof stats.block.number !== undefined)
{
if(stats.block.number !== this.stats.number){
if(stats.block.number !== this.stats.number) {
stats.block.received == (new Date()).getTime() - stats.block.arrival;
} else {
stats.block.received = this.stats.block.received;
@ -96,4 +108,10 @@ Node.prototype.getStats = function()
return {id: this.id, stats: this.stats};
}
Node.prototype.setState = function(active)
{
this.stats.active = active;
this.uptime.history.push({status: (active ? 'up' : 'down'), time: (new Date()).getTime()});
}
module.exports = Node;