-
-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathhealthHelpers.js
221 lines (207 loc) · 5.81 KB
/
healthHelpers.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
const si = require('systeminformation');
const healthHelpers = {};
/**
* This object contains all systeminformation methods,
* metric names, and corresponding data points
*/
const collectedMetrics = {
cpu: {
speed_in_GHz: 'speed',
speedMax_in_GHz: 'speedMax',
num_of_cores: 'cores',
num_of_processors: 'processors',
'cache.l1d in bytes': 'cache.l1d',
'cache.l1i in bytes': 'cache.l1i',
'cache.l2 in bytes': 'cache.l2',
'cache.l3 in bytes': 'cache.l3',
},
cpuCurrentSpeed: {
average_CPU_speed_in_GHz: 'avg',
minimum_CPU_speed_in_GHz: 'min',
maximum_CPU_speed_in_GHz: 'max',
},
cpuTemperature: {
average_temperature: 'main',
max_temperature: 'max',
},
currentLoad: {
average_CPU_load_percent: 'avg',
current_CPU_load_percent: 'currentLoad',
current_CPU_load_user_percent: 'currentLoadUser',
current_CPU_load__system_percent: 'currentLoadSystem',
current_CPU_load_nice_percent: 'currentLoadNice',
current_CPU_load_idle_percent: 'currentLoadIdle',
current_CPU_load_raw_ticks: 'rawCurrentLoad',
},
mem: {
totalmemory_in_bytes: 'total',
freememory_in_bytes: 'free',
usedmemory_in_bytes: 'used',
activememory_in_bytes: 'active',
buffers_plus_cache_in_bytes: 'buffcache',
available_memory: 'available',
},
processes: {
totalprocesses: 'all',
blockedprocesses: 'blocked',
runningprocesses: 'running',
sleepingprocesses: 'sleeping',
},
inetLatency: 'all data collected',
};
/**
* collectHealthData scrapes metrics for microservices
* @returns Promise array with each metric in an object
*/
healthHelpers.collectHealthData = () => {
const healthDataCollection = [];
const time = Date.now();
/** obtains core CPU metrics and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.cpu()
.then(data => {
const siMethodName = 'cpu';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'CPU',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains CPU speed metrics and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.cpuCurrentSpeed()
.then(data => {
const siMethodName = 'cpuCurrentSpeed';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'CPU',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains CPU temperature metrics and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.cpuTemperature()
.then(data => {
const siMethodName = 'cpuTemperature';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'CPU',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains metrics relating to current load and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.currentLoad()
.then(data => {
const siMethodName = 'currentLoad';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'CPU',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains metrics relating to memory and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.mem()
.then(data => {
const siMethodName = 'mem';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'Memory',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains metrics relating to current processes and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.processes()
.then(data => {
const siMethodName = 'processes';
for (let metricName in collectedMetrics[siMethodName]) {
healthDataCollection.push({
metric: metricName,
value: data[collectedMetrics[siMethodName][metricName]],
category: 'Processes',
time,
});
}
})
.catch(err => {
if (err) {
throw err;
}
});
/** obtains latency and creates and pushes object with
* metric name and value to the healthDataCollection array
*/
si.inetLatency()
.then(data => {
const siMethodName = 'inetLatency';
healthDataCollection.push({
metric: 'latency',
value: data,
category: 'Memory',
time,
});
})
.catch(err => {
if (err) {
throw err;
}
});
/** Return a promise that resolves to an array of all of the data points
* and removes any empty strings, NaN, or "NaN" from values prevent database errors
*/
return Promise.all(healthDataCollection).then(array =>
array.filter(metric => {
if (isNaN(metric.value) || metric.value === 'NaN' || metric.value === '') return false;
else return true;
})
);
};
module.exports = healthHelpers;