This repository was archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
319 lines (295 loc) · 9 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
var AWS = require('aws-sdk');
var rp = require('request-promise-native');
/** Everything is ok */
const STATUS_OK = 200;
/** Host is offline */
const STATUS_OFFLINE = 503;
/** Host is online, but here is a problem */
const STATUS_PROBLEM = 500;
/** Used to ensure unique generated events ids */
let eventIdCounter = 0;
function validateConfig() {
let valid = true;
if (!process.env.ZABBIX_URL) {
console.error("ZABBIX_URL not defined");
valid = false;
}
if (!process.env.ZABBIX_AUTH) {
console.error("ZABBIX_AUTH not defined");
valid = false;
}
if (!process.env.ZABBIX_HOSTID) {
console.error("ZABBIX_HOSTID not defined");
valid = false;
}
return valid;
}
async function callZabbix(requestData) {
requestData["jsonrpc"] = "2.0";
requestData["auth"] = process.env.ZABBIX_AUTH;
requestData["id"] = 1;
let opt = {
method: 'POST',
uri: process.env.ZABBIX_URL,
body: requestData,
json: true,
resolveWithFullResponse: true
}
return rp(opt)
.then(response => {
if (response.body.error) {
response.error = "400 Bad Request";
response.statusCode = 400;
throw response;
}
else {
return response.body;
}
});
}
function getTimestamp() {
return Math.round(new Date().getTime()/1000);
}
/** Internal event identifiers */
function createEventId() {
return "E:"+(new Date().getTime())+":"+(++eventIdCounter);
}
function processHostData(record) {
let host = {
hostid: record.hostid,
name: record.host,
status: STATUS_OK,
severity: 0,
timestamp: getTimestamp(),
maintenance: record.maintenance_status === "1",
events: [],
};
if (host.maintenance) {
host.maintenanceFrom = parseInt(record.maintenance_from);
}
if (record.available === "2") {
host.status = STATUS_OFFLINE;
host.events.push({
eventid: createEventId(),
type: "agent:zabbix",
message: record.error,
timestamp: parseInt(record.errors_from),
maintenance: host.maintenance
});
}
if (record.jmx_available === "2") {
host.status = STATUS_OFFLINE;
host.events.push({
eventid: createEventId(),
type: "agent:jmx",
message: record.jmx_error,
timestamp: parseInt(record.jmx_errors_from),
maintenance: host.maintenance
});
}
if (record.snmp_available === "2") {
host.status = STATUS_OFFLINE;
host.events.push({
eventid: createEventId(),
type: "agent:snmp",
message: record.snmp_error,
timestamp: parseInt(record.snmp_errors_from),
maintenance: host.maintenance
});
}
return host;
}
function processHostDataResult(hosts, data) {
for (let i = 0; i < data.result.length; ++i) {
let host = processHostData(data.result[i]);
hosts[host.hostid] = host;
}
}
function registerServerError(hosts, response) {
let record = {
hostid: process.env.ZABBIX_HOSTID,
status: STATUS_OFFLINE,
timestamp: getTimestamp(),
maintenance: false,
events: []
}
if (response.body && response.body.jsonrpc) {
console.error("API error: "+JSON.stringify(response.body.error));
record.events.push({
eventid: createEventId(),
type: "api",
message: "["+response.body.error.code+"] "+response.body.error.message+" "+response.body.error.data,
timestamp: getTimestamp(),
maintenance: record.maintenance
});
}
else {
console.error("IO error: "+response);
record.events.push({
eventid: createEventId(),
type: "api:io",
message: ""+response,
timestamp: getTimestamp(),
maintenance: record.maintenance
});
}
hosts[process.env.ZABBIX_HOSTID] = record;
}
async function fetchHosts(hosts) {
console.info("Fetching hosts...");
let req = {
"method": "host.get",
"params": {
"with_items": true,
"monitored_hosts": true
}
};
return callZabbix(req)
.then(data => {
processHostDataResult(hosts, data);
return true;
})
.catch(err => {
registerServerError(hosts, err);
return false;
});
}
function processHostEvent(host, event) {
let record = {
eventid: event.lastEvent.eventid,
type: 'trigger',
message: event.description,
timestamp: parseInt(event.lastchange),
maintenance: host.maintenance,
triggerid: event.triggerid,
severity: parseInt(event.priority),
acknowledged: event.lastEvent.acknowledged === "1"
};
host.events.push(record);
if (host.status === STATUS_OK) {
host.status = STATUS_PROBLEM;
}
host.severity = Math.max(host.severity, record.severity);
}
function processEventResults(hosts, response) {
for (let i = 0; i < response.result.length; ++i) {
let data = response.result[i];
for (let j = 0; j < data.hosts.length; ++j) {
let host = hosts[data.hosts[j].hostid];
processHostEvent(host, data);
}
}
}
async function fetchEvents(hosts) {
console.info("Fetching events...");
let req = {
"method": "trigger.get",
"params": {
"filter": {
"value": 1
},
"monitored": true,
"min_severity": process.env.MIN_SEVERITY||4,
"selectHosts": ["hostid", "host"],
"selectLastEvent": ["eventid", "acknowledged"],
"output": "extend",
"expandDescription": true,
"expandComment": true
},
};
return callZabbix(req)
.then(data => {
processEventResults(hosts, data);
return true;
}).catch(err => {
return false;
});;
}
function batchWriteItem(dynamodb, param) {
return new Promise((resolve, reject) => {
dynamodb.batchWriteItem(param, function(err, data) {
if (err) {
reject(err);
} else {
resolve(data.ConsumedCapacity[0].CapacityUnits);
}
});
});
}
function batchPutItems(dynamodb, table, batch) {
if (batch.length == 0) {
return Promise.resolve(0);
}
console.log("Flushing buffer of size "+batch.length+" to table "+table);
let param = {
RequestItems: {},
ReturnConsumedCapacity: "TOTAL"
};
param.RequestItems[table] = [];
for (let i = 0; i < batch.length; ++i) {
param.RequestItems[table].push({
PutRequest: {
Item: AWS.DynamoDB.Converter.marshall(batch[i])
}
});
}
return batchWriteItem(dynamodb, param);
}
function batchRegisterStatus(dynamodb, hosts) {
let promises = [];
let events = [];
let buffer = [];
for (const hostid in hosts) {
const host = hosts[hostid];
Array.prototype.push.apply(events, host.events);
delete host.events;
buffer.push(host);
if (buffer.length >= 25) {
promises.push(batchPutItems(dynamodb, "zabbix.hosts", buffer));
buffer = [];
}
}
promises.push(batchPutItems(dynamodb, "zabbix.hosts", buffer));
buffer = [];
for (let i = 0; i < events.length; ++i) {
buffer.push(events[i]);
if (buffer.length >= 25) {
promises.push(batchPutItems(dynamodb, "zabbix.events", buffer));
buffer = [];
}
}
promises.push(batchPutItems(dynamodb, "zabbix.events", buffer));
return promises;
}
function registerStatus(hosts) {
console.info("Registering status...");
let dynamodb = new AWS.DynamoDB();
return Promise.all(batchRegisterStatus(dynamodb, hosts));
}
async function watchZabbix(event, context) {
if (!validateConfig()) {
return;
}
let hosts = {};
return fetchHosts(hosts)
.then(ret => {
if (ret) {
return fetchEvents(hosts);
}
else {
return true;
}
})
.then(() => registerStatus(hosts))
.then(result => {
console.info("Done.");
return {
writes: result.length,
items: result.reduce((a,b) => a+b, 0)
};
});
}
exports.watchZabbix = watchZabbix;
if (require.main === module && process.argv[2] === "test") {
watchZabbix({}, {}).then(result => console.log(result));
}