-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
216 lines (203 loc) · 5.92 KB
/
index.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
const Monitoring = require('./monitoring');
const Config = require('./config');
const Api = require('./api');
const Util = require('../../common-util');
const nThen = require('nthen');
let Prometheus;
try {
Prometheus = require('prom-client');
} catch (e) {
console.warn("The cryptpad-monitoring-plugin has been installed but its dependencies are missing. Please go to ./lib/plugins/{monitoring-plugin-directory} and run \"npm ci\"");
}
const api = Api.create();
const MONITORING = {};
MONITORING.onWorkerClosed = (type, pid) => {
Monitoring.clearValues(pid);
};
let monitoringCache = {};
const tos = {};
const getMonitoringData = Util.notAgainForAnother((Env, cb) => {
// Add main process data to monitoring
let monitoring = Monitoring.getData('main');
let Server = Env.Server;
let stats = Server.getSessionStats();
monitoring.stats = stats;
monitoring.channels = Server.getActiveChannelCount();
monitoring.registered = Object.keys(Env.netfluxUsers).length;
// Send updated values
Monitoring.applyValues(monitoring);
// Get workers data
// Clear object
Object.keys(tos).forEach(k => { delete tos[k]; });
const TIMEOUT = 1000;
nThen(waitFor => {
let txid = Util.guid([]);
tos._txid = txid;
let dbWorkers = Env.broadcastWorkerCommand({
command: 'GET_MONITORING',
txid: txid
});
let httpWorkers = Env.broadcast('GET_MONITORING', {txid});
let addTo = worker => {
let pid = worker.process?.pid || worker.pid;
let w = waitFor();
let to = setTimeout(w, TIMEOUT);
let done = () => {
w();
clearTimeout(to);
};
tos[pid] = { done };
};
dbWorkers.forEach(addTo);
httpWorkers.forEach(addTo);
}).nThen(() => {
let map = Monitoring.processAll();
cb(map);
});
}, Config.interval);
MONITORING.initialize = (Env, type) => {
if (type === "db-worker") {
/*
setInterval(() => {
Env.sendMessage({
type: 'monitoring',
plugin: true,
data: Monitoring.getData('db-worker')
});
}, Config.interval);
*/
return;
}
if (type === "http-worker") {
/*
setInterval(() => {
Env.sendMessage({
command: 'MONITORING',
data: Monitoring.getData('http-worker')
}, () => {
// Done
});
}, Config.interval);
*/
return;
}
if (type !== "main") { return; }
// type === main
setInterval(() => {
// Update cached values every minute if not called earlier
getMonitoringData(Env, map => {
monitoringCache = map;
});
}, 60000);
};
MONITORING.addMainCommands = (Env) => {
const commands = {};
// Received from http workers
commands.MONITORING = (msg, cb) => {
let data = msg.data;
Object.keys(tos).forEach(pid => {
// Check if this message is a response to our command
if (+data.pid !== +pid || data.txid !== tos._txid) {
return;
}
// apply values and call waitfor for this worker
Monitoring.applyValues(data.value);
tos[pid].done();
});
cb();
};
commands.GET_MONITORING_CACHED_DATA = (msg, cb) => {
cb(void 0, monitoringCache);
};
commands.GET_MONITORING_DATA = (msg, cb) => {
let to = getMonitoringData(Env, map => {
monitoringCache = map;
cb(void 0, map);
});
if (to) { // function called to recently, use cache
cb(void 0, monitoringCache);
}
};
return commands;
};
MONITORING.addWorkerResponses = (/*Env*/) => {
const res = {};
res.monitoring = data => {
Object.keys(tos).forEach(pid => {
// Check if this message is a response to our command
if (+data.pid !== +pid || data.txid !== tos._txid) {
return;
}
// apply values and call waitfor for this worker
Monitoring.applyValues(data.value);
tos[pid].done();
});
};
return res;
};
// DB-WORKER
MONITORING.addWorkerCommands = (Env) => {
const events = {};
events.GET_MONITORING = (data) => {
Env.sendMessage({
type: 'monitoring',
plugin: true,
data: {
txid: data.txid,
pid: process.pid,
value: Monitoring.getData('db-worker')
}
});
};
return events;
};
// HTTP-WORKER
MONITORING.addHttpEvents = (Env) => {
const events = {};
events.GET_MONITORING = (data) => {
Env.sendMessage({
command: 'MONITORING',
data: {
txid: data.txid,
pid: process.pid,
value: Monitoring.getData('http-worker')
}
}, () => {
// Done
});
};
return events;
};
MONITORING.addHttpEndpoints = (Env, app) => {
const send500 = (res) => {
res.status(500);
res.send();
};
app.get('/metricscache', (req, res) => {
Env.sendMessage({
command: 'GET_MONITORING_CACHED_DATA',
}, (err, value) => {
if (err || !value) {
return void send500(res);
}
api.onMetricsEndpoint(res, value);
});
});
app.get('/metrics', (req, res) => {
Env.sendMessage({
command: 'GET_MONITORING_DATA',
}, (err, value) => {
if (err || !value) {
return void send500(res);
}
api.onMetricsEndpoint(res, value);
});
});
};
// ALL
MONITORING.increment = Monitoring.increment;
MONITORING.getData = Monitoring.getData;
module.exports = {
name: "MONITORING",
modules: Prometheus ? MONITORING : {}
};