-
Notifications
You must be signed in to change notification settings - Fork 0
/
sysinfo.js
141 lines (110 loc) · 3.11 KB
/
sysinfo.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
'use strict';
var _ = require('lodash-node'),
util = require('util'),
os = require('os'),
exec = require('child_process').exec,
async = require('async');
/**
* System Information Object
* @return {[sysinfo]} [system information object]
*/
var sysinfo = function () {
this.arch = os.arch();
this.clockSpeed = this.clockSpeed();
this.cpu = this.cpu();
this.cpuLoad = exports.cpuLoad();
this.cpus = os.cpus();
this.endianness = os.endianness();
this.EOL = os.EOL;
this.freemem = os.freemem();
this.hostname = os.hostname();
this.loadavg = os.loadavg();
this.memusage = exports.memoryUsage();
this.numCpus = this.numCpus();
this.platform = os.platform();
this.release = os.release();
this.tmpdir = os.tmpdir();
this.totalmem = os.totalmem();
this.type = os.type();
this.uptime = os.uptime();
};
sysinfo.prototype.toString = function () {
return util.format('%s (%s) %s', this.type, this.arch, this.release);
};
sysinfo.prototype.clockSpeed = function () {
return os.cpus()[0].speed;
};
sysinfo.prototype.cpu = function () {
return os.cpus()[0].model;
};
sysinfo.prototype.numCpus = function () {
return os.cpus().length;
};
exports.macAddress = function (uuid, callback) {
exec('ifconfig ' + uuid + ' | awk \'/ether/ {print $2}\'',
function (err, stdout, stderr) {
if (stdout === null || stdout === '' || err) {
callback(null); // silent fail
} else {
callback(stdout);
}
});
};
/**
* Retreives all network interfaces on the host device, map to a usable array
* @return [{[string]: [object]}] [an array of network interfaces]
*/
exports.networkInterfaces = function (callback) {
var ifaces = [];
_.forIn(os.networkInterfaces(), function (value, key) {
ifaces.push({
'uuid': key,
'addresses': value
});
});
async.each(ifaces, function (iface, callback) {
exports.macAddress(iface.uuid, function (ether) {
iface.ether = ether;
callback();
});
}, function (err) {
callback(ifaces);
});
};
/**
* Retrieves system information about the host device
* @return {[type]} [description]
* @todo retrieve data to plot to a chart (freemem, loadavg, etc.)
*/
exports.systemInfo = function (callback) {
var info = new sysinfo();
exports.networkInterfaces(function (ifaces) {
info.ifaces = ifaces;
callback(info);
});
};
exports.loadAverage = function () {
return os.loadavg();
};
/**
* Cpu load in percentages
* @return array array of floats
*/
exports.cpuLoad = function () {
var cpus = os.cpus();
var loads = [];
cpus.forEach(function (cpu) {
var load = cpu.times.user + cpu.times.nice +
cpu.times.sys + cpu.times.irq;
var uptime = os.uptime() * 1000; // convert seconds to ms
loads.push((load / uptime) * 100);
});
return loads;
};
/**
* Available amount of memory in percentages
* @return double [amount of free memory]
*/
exports.memoryUsage = function () {
return ((os.totalmem() - os.freemem()) / os.totalmem()) * 100;
};