-
Notifications
You must be signed in to change notification settings - Fork 46
/
influxdb.js
executable file
·510 lines (451 loc) · 18.6 KB
/
influxdb.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
var _ = require('lodash');
module.exports = function (RED) {
"use strict";
var Influx = require('influx');
var { InfluxDB, Point } = require('@influxdata/influxdb-client');
const VERSION_1X = '1.x';
const VERSION_18_FLUX = '1.8-flux';
const VERSION_20 = '2.0';
/**
* Config node. Currently we only connect to one host.
*/
function InfluxConfigNode(n) {
RED.nodes.createNode(this, n);
this.hostname = n.hostname;
this.port = n.port;
this.database = n.database;
this.name = n.name;
var clientOptions = null;
if (!n.influxdbVersion) {
n.influxdbVersion = VERSION_1X;
}
if (n.influxdbVersion === VERSION_1X) {
this.usetls = n.usetls;
if (typeof this.usetls === 'undefined') {
this.usetls = false;
}
// for backward compatibility with old 'protocol' setting
if (n.protocol === 'https') {
this.usetls = true;
}
if (this.usetls && n.tls) {
var tlsNode = RED.nodes.getNode(n.tls);
if (tlsNode) {
this.hostOptions = {};
tlsNode.addTLSOptions(this.hostOptions);
}
}
this.client = new Influx.InfluxDB({
hosts: [{
host: this.hostname,
port: this.port,
protocol: this.usetls ? "https" : "http",
options: this.hostOptions
}],
database: this.database,
username: this.credentials.username,
password: this.credentials.password
});
} else if (n.influxdbVersion === VERSION_18_FLUX || n.influxdbVersion === VERSION_20) {
const timeout = Math.floor(+(n.timeout?n.timeout:10)*1000) // convert from seconds to milliseconds
const token = n.influxdbVersion === VERSION_18_FLUX ?
`${this.credentials.username}:${this.credentials.password}` :
this.credentials.token;
clientOptions = {
url: n.url,
token,
timeout,
rejectUnauthorized: n.rejectUnauthorized
}
this.client = new InfluxDB(clientOptions);
}
this.influxdbVersion = n.influxdbVersion;
}
RED.nodes.registerType("influxdb", InfluxConfigNode, {
credentials: {
username: { type: "text" },
password: { type: "password" },
token: { type: "password" }
}
});
function isIntegerString(value) {
return /^-?\d+i$/.test(value);
}
function setFieldIntegers(fields) {
for (const prop in fields) {
const value = fields[prop];
if (isIntegerString(value)) {
fields[prop] = parseInt(value.substring(0,value.length-1));
}
}
}
function addFieldToPoint(point, name, value) {
if (name === 'time') {
point.timestamp(value);
} else if (typeof value === 'number') {
point.floatField(name, value);
} else if (typeof value === 'string') {
// string values with numbers ending with 'i' are considered integers
if (isIntegerString(value)) {
value = parseInt(value.substring(0,value.length-1));
point.intField(name, value);
} else {
point.stringField(name, value);
}
} else if (typeof value === 'boolean') {
point.booleanField(name, value);
}
}
function addFieldsToPoint(point, fields) {
for (const prop in fields) {
const value = fields[prop];
addFieldToPoint(point, prop, value);
}
}
// write using influx-client-js
function writePoints(msg, node, done) {
var measurement = msg.hasOwnProperty('measurement') ? msg.measurement : node.measurement;
if (!measurement) {
return done(RED._("influxdb.errors.nomeasurement"));
}
try {
if (_.isArray(msg.payload) && msg.payload.length > 0) {
// array of arrays: multiple points with fields and tags
if (_.isArray(msg.payload[0]) && msg.payload[0].length > 0) {
msg.payload.forEach(element => {
let point = new Point(measurement);
let fields = element[0];
addFieldsToPoint(point, fields);
let tags = element[1];
for (const prop in tags) {
point.tag(prop, tags[prop]);
}
node.client.writePoint(point);
});
} else {
// array of non-arrays: one point with both fields and tags
let point = new Point(measurement);
let fields = msg.payload[0];
addFieldsToPoint(point, fields);
const tags = msg.payload[1];
for (const prop in tags) {
point.tag(prop, tags[prop]);
}
node.client.writePoint(point)
}
} else {
// single object: fields only
if (_.isPlainObject(msg.payload)) {
let point = new Point(measurement);
let fields = msg.payload;
addFieldsToPoint(point, fields);
node.client.writePoint(point);
} else {
// just a value
let point = new Point(measurement);
let value = msg.payload;
addFieldToPoint(point, 'value', value);
node.client.writePoint(point);
}
}
node.client.flush(true).then(() => {
done();
}).catch(error => {
msg.influx_error = {
errorMessage: error
};
done(error);
});
} catch (error) {
msg.influx_error = {
errorMessage: error
};
done(error);
}
}
/**
* Output node to write to a single influxdb measurement
*/
function InfluxOutNode(n) {
RED.nodes.createNode(this, n);
this.measurement = n.measurement;
this.influxdb = n.influxdb;
this.influxdbConfig = RED.nodes.getNode(this.influxdb);
this.precision = n.precision;
this.retentionPolicy = n.retentionPolicy;
// 1.8 and 2.0 only
this.database = n.database;
this.precisionV18FluxV20 = n.precisionV18FluxV20;
this.retentionPolicyV18Flux = n.retentionPolicyV18Flux;
this.org = n.org;
this.bucket = n.bucket;
if (!this.influxdbConfig) {
this.error(RED._("influxdb.errors.missingconfig"));
return;
}
let version = this.influxdbConfig.influxdbVersion;
var node = this;
if (version === VERSION_1X) {
var client = this.influxdbConfig.client;
node.on("input", function (msg, send, done) {
var measurement;
var writeOptions = {};
var measurement = msg.hasOwnProperty('measurement') ? msg.measurement : node.measurement;
if (!measurement) {
return done(RED._("influxdb.errors.nomeasurement"));
}
var precision = msg.hasOwnProperty('precision') ? msg.precision : node.precision;
var retentionPolicy = msg.hasOwnProperty('retentionPolicy') ? msg.retentionPolicy : node.retentionPolicy;
if (precision) {
writeOptions.precision = precision;
}
if (retentionPolicy) {
writeOptions.retentionPolicy = retentionPolicy;
}
// format payload to match new writePoints API
var points = [];
var point;
if (_.isArray(msg.payload) && msg.payload.length > 0) {
// array of arrays
if (_.isArray(msg.payload[0]) && msg.payload[0].length > 0) {
msg.payload.forEach(function (nodeRedPoint) {
let fields = _.clone(nodeRedPoint[0])
point = {
measurement: measurement,
fields,
tags: nodeRedPoint[1]
}
setFieldIntegers(point.fields)
if (point.fields.time) {
point.timestamp = point.fields.time;
delete point.fields.time;
}
points.push(point);
});
} else {
// array of non-arrays, assume one point with both fields and tags
let fields = _.clone(msg.payload[0])
point = {
measurement: measurement,
fields,
tags: msg.payload[1]
};
setFieldIntegers(point.fields)
if (point.fields.time) {
point.timestamp = point.fields.time;
delete point.fields.time;
}
points.push(point);
}
} else {
// fields only
if (_.isPlainObject(msg.payload)) {
let fields = _.clone(msg.payload)
point = {
measurement: measurement,
fields,
};
setFieldIntegers(point.fields)
if (point.fields.time) {
point.timestamp = point.fields.time;
delete point.fields.time;
}
} else {
// just a value
point = {
measurement: measurement,
fields: { value: msg.payload }
};
setFieldIntegers(point.fields)
}
points.push(point);
}
client.writePoints(points, writeOptions).then(() => {
done();
}).catch(function (err) {
msg.influx_error = {
statusCode: err.res ? err.res.statusCode : 503
}
done(err);
});
});
} else if (version === VERSION_18_FLUX || version === VERSION_20) {
let bucket = this.bucket;
if (version === VERSION_18_FLUX) {
let retentionPolicy = this.retentionPolicyV18Flux ? this.retentionPolicyV18Flux : 'autogen';
bucket = `${this.database}/${retentionPolicy}`;
}
let org = version === VERSION_18_FLUX ? '' : this.org;
this.client = this.influxdbConfig.client.getWriteApi(org, bucket, this.precisionV18FluxV20);
node.on("input", function (msg, send, done) {
writePoints(msg, node, done);
});
}
}
RED.nodes.registerType("influxdb out", InfluxOutNode);
/**
* Output node to write to multiple InfluxDb measurements
*/
function InfluxBatchNode(n) {
RED.nodes.createNode(this, n);
this.influxdb = n.influxdb;
this.influxdbConfig = RED.nodes.getNode(this.influxdb);
this.precision = n.precision;
this.retentionPolicy = n.retentionPolicy;
// 1.8 and 2.0
this.database = n.database;
this.precisionV18FluxV20 = n.precisionV18FluxV20;
this.retentionPolicyV18Flux = n.retentionPolicyV18Flux;
this.org = n.org;
this.bucket = n.bucket;
if (!this.influxdbConfig) {
this.error(RED._("influxdb.errors.missingconfig"));
return;
}
let version = this.influxdbConfig.influxdbVersion;
var node = this;
if (version === VERSION_1X) {
var client = this.influxdbConfig.client;
node.on("input", function (msg, send, done) {
var writeOptions = {};
var precision = msg.hasOwnProperty('precision') ? msg.precision : node.precision;
var retentionPolicy = msg.hasOwnProperty('retentionPolicy') ? msg.retentionPolicy : node.retentionPolicy;
if (precision) {
writeOptions.precision = precision;
}
if (retentionPolicy) {
writeOptions.retentionPolicy = retentionPolicy;
}
client.writePoints(msg.payload, writeOptions).then(() => {
done();
}).catch(function (err) {
msg.influx_error = {
statusCode: err.res ? err.res.statusCode : 503
}
done(err);
});
});
} else if (version === VERSION_18_FLUX || version === VERSION_20) {
let bucket = node.bucket;
if (version === VERSION_18_FLUX) {
let retentionPolicy = this.retentionPolicyV18Flux ? this.retentionPolicyV18Flux : 'autogen';
bucket = `${this.database}/${retentionPolicy}`;
}
let org = version === VERSION_18_FLUX ? '' : this.org;
var client = this.influxdbConfig.client.getWriteApi(org, bucket, this.precisionV18FluxV20);
node.on("input", function (msg, send, done) {
msg.payload.forEach(element => {
let point = new Point(element.measurement);
// time is reserved as a field name still! will be overridden by the timestamp below.
addFieldsToPoint(point, element.fields);
let tags = element.tags;
if (tags) {
for (const prop in tags) {
point.tag(prop, tags[prop]);
}
}
if (element.timestamp) {
point.timestamp(element.timestamp);
}
client.writePoint(point);
});
// ensure we write everything including scheduled retries
client.flush(true).then(() => {
done();
}).catch(error => {
msg.influx_error = {
errorMessage: error
};
done(error);
});
});
}
}
RED.nodes.registerType("influxdb batch", InfluxBatchNode);
/**
* Input node to make queries to influxdb
*/
function InfluxInNode(n) {
RED.nodes.createNode(this, n);
this.influxdb = n.influxdb;
this.query = n.query;
this.precision = n.precision;
this.retentionPolicy = n.retentionPolicy;
this.rawOutput = n.rawOutput;
this.influxdbConfig = RED.nodes.getNode(this.influxdb);
this.org = n.org;
if (!this.influxdbConfig) {
this.error(RED._("influxdb.errors.missingconfig"));
return;
}
let version = this.influxdbConfig.influxdbVersion
if (version === VERSION_1X) {
var node = this;
var client = this.influxdbConfig.client;
node.on("input", function (msg, send, done) {
var query;
var rawOutput;
var queryOptions = {};
var precision;
var retentionPolicy;
query = msg.hasOwnProperty('query') ? msg.query : node.query;
if (!query) {
return done(RED._("influxdb.errors.noquery"));
}
rawOutput = msg.hasOwnProperty('rawOutput') ? msg.rawOutput : node.rawOutput;
precision = msg.hasOwnProperty('precision') ? msg.precision : node.precision;
retentionPolicy = msg.hasOwnProperty('retentionPolicy') ? msg.retentionPolicy : node.retentionPolicy;
if (precision) {
queryOptions.precision = precision;
}
if (retentionPolicy) {
queryOptions.retentionPolicy = retentionPolicy;
}
if (rawOutput) {
var queryPromise = client.queryRaw(query, queryOptions);
} else {
var queryPromise = client.query(query, queryOptions);
}
queryPromise.then(function (results) {
msg.payload = results;
send(msg);
done();
}).catch(function (err) {
msg.influx_error = {
statusCode: err.res ? err.res.statusCode : 503
}
done(err);
});
});
} else if (version === VERSION_18_FLUX || version === VERSION_20) {
let org = version === VERSION_20 ? this.org : ''
this.client = this.influxdbConfig.client.getQueryApi(org);
var node = this;
node.on("input", function (msg, send, done) {
var query = msg.hasOwnProperty('query') ? msg.query : node.query;
if (!query) {
return done(RED._("influxdb.errors.noquery"));
}
var output = [];
node.client.queryRows(query, {
next(row, tableMeta) {
var o = tableMeta.toObject(row)
output.push(o);
},
error(error) {
msg.influx_error = {
errorMessage: error
};
done(error);
},
complete() {
msg.payload = output;
send(msg);
done();
},
});
});
}
}
RED.nodes.registerType("influxdb in", InfluxInNode);
}