node-red-contrib-prib-functions 0.18.0 → 0.20.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/.github/workflows/codeql-analysis.yml +3 -3
  2. package/.github/workflows/npmpublish.yml +6 -6
  3. package/.vs/VSWorkspaceState.json +7 -0
  4. package/.vs/node-red-contrib-prib-functions/v17/.wsuo +0 -0
  5. package/README.md +22 -19
  6. package/arima/index.js +18 -0
  7. package/dataAnalysis/arrayAllRowsSwap.js +15 -0
  8. package/dataAnalysis/arrayCompareToPrecision.js +34 -0
  9. package/dataAnalysis/arrayDifference.js +14 -0
  10. package/dataAnalysis/arrayDifferenceSeasonal.js +15 -0
  11. package/dataAnalysis/arrayDifferenceSeasonalSecondOrder.js +20 -0
  12. package/dataAnalysis/arrayDifferenceSecondOrder.js +14 -0
  13. package/dataAnalysis/arrayForEachRange.js +38 -0
  14. package/dataAnalysis/arrayOverlay.js +13 -0
  15. package/dataAnalysis/arrayProduct.js +11 -0
  16. package/dataAnalysis/arrayRandom.js +14 -0
  17. package/dataAnalysis/arrayReduceRange.js +11 -0
  18. package/dataAnalysis/arrayScale.js +11 -0
  19. package/dataAnalysis/arraySum.js +11 -0
  20. package/dataAnalysis/arraySumSquared.js +11 -0
  21. package/dataAnalysis/arraySwap.js +11 -0
  22. package/dataAnalysis/dataAnalysis.html +31 -14
  23. package/dataAnalysis/dataAnalysis.js +10 -1
  24. package/dataAnalysis/generateMatrixFunction.js +89 -0
  25. package/dataAnalysis/generateVectorFunction.js +25 -0
  26. package/dataAnalysis/pca.js +546 -0
  27. package/dataAnalysis/svd.js +239 -0
  28. package/documentation/loadInjector.png +0 -0
  29. package/echart/echart.html +68 -0
  30. package/echart/echart.js +85 -0
  31. package/echart/icons/chart-671.png +0 -0
  32. package/echart/lib/echarts.js +95886 -0
  33. package/lib/Chart.js +177 -0
  34. package/lib/Column.js +99 -0
  35. package/lib/GraphDB.js +14 -0
  36. package/lib/Table.js +185 -0
  37. package/lib/objectExtensions.js +361 -0
  38. package/matrix/matrix.js +50 -50
  39. package/matrix/matrixNode.html +144 -154
  40. package/matrix/matrixNode.js +26 -9
  41. package/monitor/BarGauge.js +8 -0
  42. package/monitor/Dataset.js +29 -0
  43. package/monitor/DialGauge.js +109 -0
  44. package/monitor/DialNeedle.js +36 -0
  45. package/monitor/Format.js +74 -0
  46. package/monitor/centerElement.js +14 -0
  47. package/monitor/compareElements.js +95 -0
  48. package/monitor/defs.js +23 -0
  49. package/monitor/extensions.js +906 -0
  50. package/monitor/functions.js +36 -0
  51. package/monitor/json2xml.js +103 -0
  52. package/monitor/monitorSystem.html +198 -0
  53. package/monitor/monitorSystem.js +322 -0
  54. package/monitor/svgHTML.js +179 -0
  55. package/monitor/svgObjects.js +64 -0
  56. package/package.json +31 -8
  57. package/test/00-objectExtensions.js +94 -0
  58. package/test/01-base.js +88 -0
  59. package/test/04-tables.js +33 -0
  60. package/test/data/.config.nodes.json +608 -0
  61. package/test/data/.config.nodes.json.backup +608 -0
  62. package/test/data/.config.runtime.json +4 -0
  63. package/test/data/.config.runtime.json.backup +3 -0
  64. package/test/data/.config.users.json +21 -0
  65. package/test/data/.config.users.json.backup +21 -0
  66. package/test/data/.flow.json.backup +3433 -0
  67. package/test/data/float32vector10.npy +0 -0
  68. package/test/data/flow.json +3433 -0
  69. package/test/data/int2matrix2x3.npy +0 -0
  70. package/test/data/package-lock.json +158 -0
  71. package/test/data/package.json +11 -0
  72. package/test/data/settings.js +544 -0
  73. package/test/dataAnalysisExtensions.js +472 -0
  74. package/test/dataAnalysisPCA.js +54 -0
  75. package/test/dataAnalysisSVD.js +31 -0
  76. package/test/euclideanDistance.js +2 -2
  77. package/test/matrix/02base.js +36 -0
  78. package/test/transformNumPy.js +132 -0
  79. package/testing/data/countries.csv +250 -0
  80. package/testing/hostAvailable.html +0 -2
  81. package/testing/load-injector.html +76 -21
  82. package/testing/load-injector.js +35 -54
  83. package/testing/test.js +1 -0
  84. package/transform/NumPy.js +303 -0
  85. package/transform/transform.html +73 -19
  86. package/transform/transform.js +144 -8
  87. package/documentation/LoadInjector.JPG +0 -0
@@ -0,0 +1,3433 @@
1
+ [
2
+ {
3
+ "id": "0ff935c8a42f26ae",
4
+ "type": "tab",
5
+ "label": "Monitory System",
6
+ "disabled": false,
7
+ "info": "",
8
+ "env": []
9
+ },
10
+ {
11
+ "id": "22109ce1.cdbde4",
12
+ "type": "tab",
13
+ "label": "Spawn Process",
14
+ "disabled": false,
15
+ "info": ""
16
+ },
17
+ {
18
+ "id": "e4973c86.37d63",
19
+ "type": "tab",
20
+ "label": "Test",
21
+ "disabled": false,
22
+ "info": ""
23
+ },
24
+ {
25
+ "id": "fa243279.4dbe9",
26
+ "type": "tab",
27
+ "label": "os (nodejs)",
28
+ "disabled": false,
29
+ "info": "Calls to require('os') of node.js "
30
+ },
31
+ {
32
+ "id": "11cc261f.ec82da",
33
+ "type": "tab",
34
+ "label": "Data Analysis",
35
+ "disabled": false,
36
+ "info": ""
37
+ },
38
+ {
39
+ "id": "cf595649.931658",
40
+ "type": "tab",
41
+ "label": "Data Analysis - Real time",
42
+ "disabled": false,
43
+ "info": ""
44
+ },
45
+ {
46
+ "id": "d9c7ae0e.cb9a9",
47
+ "type": "tab",
48
+ "label": "Transform",
49
+ "disabled": false,
50
+ "info": ""
51
+ },
52
+ {
53
+ "id": "cf804fb2.6df8c",
54
+ "type": "tab",
55
+ "label": "Load Injector",
56
+ "disabled": false,
57
+ "info": ""
58
+ },
59
+ {
60
+ "id": "fcc005d5.131ee8",
61
+ "type": "tab",
62
+ "label": "Monitor",
63
+ "disabled": false,
64
+ "info": ""
65
+ },
66
+ {
67
+ "id": "6dd63ebd.bf044",
68
+ "type": "tab",
69
+ "label": "Append",
70
+ "disabled": false,
71
+ "info": ""
72
+ },
73
+ {
74
+ "id": "955f4808.fd1898",
75
+ "type": "tab",
76
+ "label": "Host Available",
77
+ "disabled": false,
78
+ "info": ""
79
+ },
80
+ {
81
+ "id": "1be03be45284f9d4",
82
+ "type": "tab",
83
+ "label": "load injector",
84
+ "disabled": false,
85
+ "info": "",
86
+ "env": []
87
+ },
88
+ {
89
+ "id": "5866424ac23291eb",
90
+ "type": "tab",
91
+ "label": "transform",
92
+ "disabled": false,
93
+ "info": "",
94
+ "env": []
95
+ },
96
+ {
97
+ "id": "924bb2b7.03fd1",
98
+ "type": "tab",
99
+ "label": "transform xlsx",
100
+ "disabled": false,
101
+ "info": ""
102
+ },
103
+ {
104
+ "id": "65b5beda2b73b7b5",
105
+ "type": "tab",
106
+ "label": "transform compression",
107
+ "disabled": false,
108
+ "info": "",
109
+ "env": []
110
+ },
111
+ {
112
+ "id": "c1d0d1b5be0f10d4",
113
+ "type": "Monitor System",
114
+ "z": "0ff935c8a42f26ae",
115
+ "name": "",
116
+ "metrics": "gaugeMemory,resourceUsage,chartLineResource",
117
+ "x": 180,
118
+ "y": 240,
119
+ "wires": [
120
+ []
121
+ ]
122
+ },
123
+ {
124
+ "id": "ac811c5f2be19993",
125
+ "type": "Monitor System",
126
+ "z": "0ff935c8a42f26ae",
127
+ "name": "",
128
+ "metrics": "freeMemory,totalMemory,chartMemoryUsage",
129
+ "graphs": null,
130
+ "x": 600,
131
+ "y": 180,
132
+ "wires": [
133
+ []
134
+ ]
135
+ },
136
+ {
137
+ "id": "17012eaf.209341",
138
+ "type": "debug",
139
+ "z": "22109ce1.cdbde4",
140
+ "name": "ok",
141
+ "active": true,
142
+ "tosidebar": true,
143
+ "console": false,
144
+ "tostatus": false,
145
+ "complete": "true",
146
+ "targetType": "full",
147
+ "x": 590,
148
+ "y": 60,
149
+ "wires": []
150
+ },
151
+ {
152
+ "id": "44f9d218.ea49bc",
153
+ "type": "inject",
154
+ "z": "22109ce1.cdbde4",
155
+ "name": "",
156
+ "repeat": "",
157
+ "crontab": "",
158
+ "once": false,
159
+ "onceDelay": 0.1,
160
+ "topic": "start",
161
+ "payload": "",
162
+ "payloadType": "date",
163
+ "x": 160,
164
+ "y": 120,
165
+ "wires": [
166
+ [
167
+ "4d7e523d.bf906c",
168
+ "b3595576.0a49a8",
169
+ "1ae819ca.83db56",
170
+ "c72d83e4.f9c84"
171
+ ]
172
+ ]
173
+ },
174
+ {
175
+ "id": "4d7e523d.bf906c",
176
+ "type": "Spawn Process",
177
+ "z": "22109ce1.cdbde4",
178
+ "name": "",
179
+ "process": "ls",
180
+ "os": "Linux",
181
+ "autoStart": "false",
182
+ "workingDirectory": "",
183
+ "arguments": "",
184
+ "x": 350,
185
+ "y": 120,
186
+ "wires": [
187
+ [
188
+ "17012eaf.209341"
189
+ ],
190
+ [
191
+ "59abb3e0.dbab4c"
192
+ ],
193
+ [
194
+ "6ce6505f.ded13"
195
+ ]
196
+ ]
197
+ },
198
+ {
199
+ "id": "b3595576.0a49a8",
200
+ "type": "Spawn Process",
201
+ "z": "22109ce1.cdbde4",
202
+ "name": "",
203
+ "process": "ping",
204
+ "os": "Windows_NT",
205
+ "autoStart": "false",
206
+ "workingDirectory": "",
207
+ "arguments": "127.0.0.1",
208
+ "x": 350,
209
+ "y": 40,
210
+ "wires": [
211
+ [
212
+ "17012eaf.209341"
213
+ ],
214
+ [
215
+ "59abb3e0.dbab4c"
216
+ ],
217
+ [
218
+ "6ce6505f.ded13"
219
+ ]
220
+ ]
221
+ },
222
+ {
223
+ "id": "1ae819ca.83db56",
224
+ "type": "Spawn Process",
225
+ "z": "22109ce1.cdbde4",
226
+ "name": "",
227
+ "process": "failAsNotFound",
228
+ "os": "",
229
+ "autoStart": "true",
230
+ "workingDirectory": "",
231
+ "arguments": "",
232
+ "x": 360,
233
+ "y": 240,
234
+ "wires": [
235
+ [
236
+ "17012eaf.209341"
237
+ ],
238
+ [
239
+ "59abb3e0.dbab4c"
240
+ ],
241
+ [
242
+ "6ce6505f.ded13"
243
+ ]
244
+ ]
245
+ },
246
+ {
247
+ "id": "59abb3e0.dbab4c",
248
+ "type": "debug",
249
+ "z": "22109ce1.cdbde4",
250
+ "name": "error",
251
+ "active": true,
252
+ "tosidebar": true,
253
+ "console": false,
254
+ "tostatus": false,
255
+ "complete": "true",
256
+ "targetType": "full",
257
+ "x": 590,
258
+ "y": 160,
259
+ "wires": []
260
+ },
261
+ {
262
+ "id": "6ce6505f.ded13",
263
+ "type": "debug",
264
+ "z": "22109ce1.cdbde4",
265
+ "name": "exit",
266
+ "active": true,
267
+ "tosidebar": true,
268
+ "console": false,
269
+ "tostatus": false,
270
+ "complete": "true",
271
+ "targetType": "full",
272
+ "x": 590,
273
+ "y": 240,
274
+ "wires": []
275
+ },
276
+ {
277
+ "id": "c72d83e4.f9c84",
278
+ "type": "Spawn Process",
279
+ "z": "22109ce1.cdbde4",
280
+ "name": "windows cmd.exe",
281
+ "process": "cmd.exe",
282
+ "os": "Windows_NT",
283
+ "autoStart": "true",
284
+ "workingDirectory": "../",
285
+ "arguments": "/c echo %cd% %ENV1% %ENV2aa%",
286
+ "env": {
287
+ "ENV1": "t1",
288
+ "ENV2aa": "t2"
289
+ },
290
+ "x": 360,
291
+ "y": 340,
292
+ "wires": [
293
+ [
294
+ "17012eaf.209341"
295
+ ],
296
+ [
297
+ "59abb3e0.dbab4c"
298
+ ],
299
+ [
300
+ "6ce6505f.ded13"
301
+ ]
302
+ ]
303
+ },
304
+ {
305
+ "id": "e6c7ffb7.9947e",
306
+ "type": "test",
307
+ "z": "e4973c86.37d63",
308
+ "name": "",
309
+ "payload": "testdata",
310
+ "payloadType": "str",
311
+ "result": "testdata",
312
+ "resultType": "str",
313
+ "topic": "",
314
+ "x": 340,
315
+ "y": 20,
316
+ "wires": [
317
+ [
318
+ "505ec37a.ba24ac",
319
+ "ca221cf9.acd4b"
320
+ ],
321
+ [],
322
+ []
323
+ ]
324
+ },
325
+ {
326
+ "id": "505ec37a.ba24ac",
327
+ "type": "debug",
328
+ "z": "e4973c86.37d63",
329
+ "name": "",
330
+ "active": true,
331
+ "tosidebar": true,
332
+ "console": false,
333
+ "tostatus": false,
334
+ "complete": "true",
335
+ "targetType": "full",
336
+ "x": 590,
337
+ "y": 20,
338
+ "wires": []
339
+ },
340
+ {
341
+ "id": "ca221cf9.acd4b",
342
+ "type": "delay",
343
+ "z": "e4973c86.37d63",
344
+ "name": "",
345
+ "pauseType": "delay",
346
+ "timeout": "5",
347
+ "timeoutUnits": "seconds",
348
+ "rate": "1",
349
+ "nbRateUnits": "1",
350
+ "rateUnits": "second",
351
+ "randomFirst": "1",
352
+ "randomLast": "5",
353
+ "randomUnits": "seconds",
354
+ "drop": false,
355
+ "outputs": 1,
356
+ "x": 320,
357
+ "y": 100,
358
+ "wires": [
359
+ [
360
+ "e6c7ffb7.9947e"
361
+ ]
362
+ ]
363
+ },
364
+ {
365
+ "id": "8c1d482d.3797f8",
366
+ "type": "delay",
367
+ "z": "e4973c86.37d63",
368
+ "name": "",
369
+ "pauseType": "delay",
370
+ "timeout": "5",
371
+ "timeoutUnits": "seconds",
372
+ "rate": "1",
373
+ "nbRateUnits": "1",
374
+ "rateUnits": "second",
375
+ "randomFirst": "1",
376
+ "randomLast": "5",
377
+ "randomUnits": "seconds",
378
+ "drop": false,
379
+ "outputs": 1,
380
+ "x": 320,
381
+ "y": 220,
382
+ "wires": [
383
+ [
384
+ "f6d80561.d80d08"
385
+ ]
386
+ ]
387
+ },
388
+ {
389
+ "id": "f6d80561.d80d08",
390
+ "type": "test",
391
+ "z": "e4973c86.37d63",
392
+ "name": "",
393
+ "payload": "testa",
394
+ "payloadType": "str",
395
+ "result": "testb",
396
+ "resultType": "str",
397
+ "topic": "",
398
+ "x": 330,
399
+ "y": 140,
400
+ "wires": [
401
+ [
402
+ "8c1d482d.3797f8"
403
+ ],
404
+ [
405
+ "505ec37a.ba24ac"
406
+ ],
407
+ []
408
+ ]
409
+ },
410
+ {
411
+ "id": "706f9c15.e56864",
412
+ "type": "inject",
413
+ "z": "e4973c86.37d63",
414
+ "name": "",
415
+ "repeat": "",
416
+ "crontab": "",
417
+ "once": false,
418
+ "onceDelay": 0.1,
419
+ "topic": "",
420
+ "payload": "",
421
+ "payloadType": "date",
422
+ "x": 120,
423
+ "y": 20,
424
+ "wires": [
425
+ [
426
+ "e6c7ffb7.9947e",
427
+ "f6d80561.d80d08",
428
+ "7424fbe5.b21ea4",
429
+ "575b7f19.b17d5",
430
+ "c9ec0f06.98cf3",
431
+ "2e00eb75.23c2c4"
432
+ ]
433
+ ]
434
+ },
435
+ {
436
+ "id": "7424fbe5.b21ea4",
437
+ "type": "test",
438
+ "z": "e4973c86.37d63",
439
+ "name": "",
440
+ "payload": "{\"a\":1,\"b\":\"two\"}",
441
+ "payloadType": "json",
442
+ "result": "{\"a\":1,\"b\":\"two\"}",
443
+ "resultType": "json",
444
+ "topic": "",
445
+ "x": 340,
446
+ "y": 260,
447
+ "wires": [
448
+ [
449
+ "affb8557.b1c5a8"
450
+ ],
451
+ [],
452
+ []
453
+ ]
454
+ },
455
+ {
456
+ "id": "affb8557.b1c5a8",
457
+ "type": "delay",
458
+ "z": "e4973c86.37d63",
459
+ "name": "",
460
+ "pauseType": "delay",
461
+ "timeout": "5",
462
+ "timeoutUnits": "seconds",
463
+ "rate": "1",
464
+ "nbRateUnits": "1",
465
+ "rateUnits": "second",
466
+ "randomFirst": "1",
467
+ "randomLast": "5",
468
+ "randomUnits": "seconds",
469
+ "drop": false,
470
+ "outputs": 1,
471
+ "x": 340,
472
+ "y": 340,
473
+ "wires": [
474
+ [
475
+ "7424fbe5.b21ea4"
476
+ ]
477
+ ]
478
+ },
479
+ {
480
+ "id": "575b7f19.b17d5",
481
+ "type": "test",
482
+ "z": "e4973c86.37d63",
483
+ "name": "",
484
+ "payload": "{\"a\":1,\"b\":\"two\"}",
485
+ "payloadType": "str",
486
+ "result": "{\"a\":1,\"b\":\"three\"}",
487
+ "resultType": "str",
488
+ "topic": "",
489
+ "x": 350,
490
+ "y": 380,
491
+ "wires": [
492
+ [
493
+ "b1ee7e8.71a4e8"
494
+ ],
495
+ [
496
+ "505ec37a.ba24ac"
497
+ ],
498
+ []
499
+ ]
500
+ },
501
+ {
502
+ "id": "b1ee7e8.71a4e8",
503
+ "type": "delay",
504
+ "z": "e4973c86.37d63",
505
+ "name": "",
506
+ "pauseType": "delay",
507
+ "timeout": "5",
508
+ "timeoutUnits": "seconds",
509
+ "rate": "1",
510
+ "nbRateUnits": "1",
511
+ "rateUnits": "second",
512
+ "randomFirst": "1",
513
+ "randomLast": "5",
514
+ "randomUnits": "seconds",
515
+ "drop": false,
516
+ "outputs": 1,
517
+ "x": 340,
518
+ "y": 460,
519
+ "wires": [
520
+ [
521
+ "575b7f19.b17d5"
522
+ ]
523
+ ]
524
+ },
525
+ {
526
+ "id": "41c3903b.ca8a3",
527
+ "type": "delay",
528
+ "z": "e4973c86.37d63",
529
+ "name": "",
530
+ "pauseType": "delay",
531
+ "timeout": "5",
532
+ "timeoutUnits": "seconds",
533
+ "rate": "1",
534
+ "nbRateUnits": "1",
535
+ "rateUnits": "second",
536
+ "randomFirst": "1",
537
+ "randomLast": "5",
538
+ "randomUnits": "seconds",
539
+ "drop": false,
540
+ "outputs": 1,
541
+ "x": 340,
542
+ "y": 580,
543
+ "wires": [
544
+ [
545
+ "c9ec0f06.98cf3"
546
+ ]
547
+ ]
548
+ },
549
+ {
550
+ "id": "c9ec0f06.98cf3",
551
+ "type": "test",
552
+ "z": "e4973c86.37d63",
553
+ "name": "",
554
+ "payload": "{\"a\":1,\"b\":[1,2,3,4]}",
555
+ "payloadType": "str",
556
+ "result": "{\"a\":1,\"b\":[1,2,3,4]}",
557
+ "resultType": "str",
558
+ "topic": "",
559
+ "x": 350,
560
+ "y": 500,
561
+ "wires": [
562
+ [
563
+ "41c3903b.ca8a3"
564
+ ],
565
+ [],
566
+ []
567
+ ]
568
+ },
569
+ {
570
+ "id": "2e00eb75.23c2c4",
571
+ "type": "test",
572
+ "z": "e4973c86.37d63",
573
+ "name": "",
574
+ "payload": "",
575
+ "payloadType": "date",
576
+ "result": "",
577
+ "resultType": "date",
578
+ "resultProperty": "msg.testResult",
579
+ "topic": "",
580
+ "x": 320,
581
+ "y": 640,
582
+ "wires": [
583
+ [
584
+ "ee190293.d97ed"
585
+ ],
586
+ [],
587
+ []
588
+ ]
589
+ },
590
+ {
591
+ "id": "ee190293.d97ed",
592
+ "type": "function",
593
+ "z": "e4973c86.37d63",
594
+ "name": "",
595
+ "func": "msg.testResult=msg.payload\nreturn msg;",
596
+ "outputs": 1,
597
+ "noerr": 0,
598
+ "x": 570,
599
+ "y": 640,
600
+ "wires": [
601
+ [
602
+ "2e00eb75.23c2c4"
603
+ ]
604
+ ]
605
+ },
606
+ {
607
+ "id": "f9d9fffe.9c0d6",
608
+ "type": "os",
609
+ "z": "fa243279.4dbe9",
610
+ "name": "",
611
+ "property": "arch",
612
+ "x": 270,
613
+ "y": 40,
614
+ "wires": [
615
+ [
616
+ "258d203c.af111"
617
+ ],
618
+ []
619
+ ]
620
+ },
621
+ {
622
+ "id": "258d203c.af111",
623
+ "type": "debug",
624
+ "z": "fa243279.4dbe9",
625
+ "name": "os out",
626
+ "active": true,
627
+ "tosidebar": true,
628
+ "console": false,
629
+ "tostatus": false,
630
+ "complete": "payload",
631
+ "targetType": "msg",
632
+ "x": 590,
633
+ "y": 400,
634
+ "wires": []
635
+ },
636
+ {
637
+ "id": "b612d0d4.d6af9",
638
+ "type": "inject",
639
+ "z": "fa243279.4dbe9",
640
+ "name": "",
641
+ "repeat": "",
642
+ "crontab": "",
643
+ "once": false,
644
+ "onceDelay": 0.1,
645
+ "topic": "",
646
+ "payload": "",
647
+ "payloadType": "date",
648
+ "x": 100,
649
+ "y": 320,
650
+ "wires": [
651
+ [
652
+ "f9d9fffe.9c0d6",
653
+ "af14ce79.67da1",
654
+ "7b9e7709.a1a058",
655
+ "7e143a9e.eb16b4",
656
+ "b9995178.6ca31",
657
+ "a572aac6.59d2e8",
658
+ "10bea419.99e54c",
659
+ "98a73c5b.3e298",
660
+ "a0b1d851.af5698",
661
+ "9d89654b.a1b158",
662
+ "3fb37e05.d807c2",
663
+ "93e4f264.298b8",
664
+ "44e0bbd2.29e2b4",
665
+ "867824a3.7194d8",
666
+ "d49cda2c.33ab88",
667
+ "7bd65c52.e940d4",
668
+ "e242c49a.2de7e8",
669
+ "fe9cdcce.1175"
670
+ ]
671
+ ]
672
+ },
673
+ {
674
+ "id": "af14ce79.67da1",
675
+ "type": "os",
676
+ "z": "fa243279.4dbe9",
677
+ "name": "",
678
+ "property": "EOL",
679
+ "x": 270,
680
+ "y": 80,
681
+ "wires": [
682
+ [
683
+ "258d203c.af111"
684
+ ],
685
+ []
686
+ ]
687
+ },
688
+ {
689
+ "id": "7b9e7709.a1a058",
690
+ "type": "os",
691
+ "z": "fa243279.4dbe9",
692
+ "name": "",
693
+ "property": "constants",
694
+ "x": 280,
695
+ "y": 120,
696
+ "wires": [
697
+ [
698
+ "258d203c.af111"
699
+ ],
700
+ []
701
+ ]
702
+ },
703
+ {
704
+ "id": "7e143a9e.eb16b4",
705
+ "type": "os",
706
+ "z": "fa243279.4dbe9",
707
+ "name": "",
708
+ "property": "cpus",
709
+ "x": 270,
710
+ "y": 160,
711
+ "wires": [
712
+ [
713
+ "258d203c.af111"
714
+ ],
715
+ []
716
+ ]
717
+ },
718
+ {
719
+ "id": "b9995178.6ca31",
720
+ "type": "os",
721
+ "z": "fa243279.4dbe9",
722
+ "name": "",
723
+ "property": "endianness",
724
+ "x": 290,
725
+ "y": 200,
726
+ "wires": [
727
+ [
728
+ "258d203c.af111"
729
+ ],
730
+ []
731
+ ]
732
+ },
733
+ {
734
+ "id": "a572aac6.59d2e8",
735
+ "type": "os",
736
+ "z": "fa243279.4dbe9",
737
+ "name": "",
738
+ "property": "freemem",
739
+ "x": 280,
740
+ "y": 240,
741
+ "wires": [
742
+ [
743
+ "258d203c.af111"
744
+ ],
745
+ []
746
+ ]
747
+ },
748
+ {
749
+ "id": "10bea419.99e54c",
750
+ "type": "os",
751
+ "z": "fa243279.4dbe9",
752
+ "name": "",
753
+ "property": "getPriority",
754
+ "x": 280,
755
+ "y": 280,
756
+ "wires": [
757
+ [
758
+ "258d203c.af111"
759
+ ],
760
+ []
761
+ ]
762
+ },
763
+ {
764
+ "id": "98a73c5b.3e298",
765
+ "type": "os",
766
+ "z": "fa243279.4dbe9",
767
+ "name": "",
768
+ "property": "homedir",
769
+ "x": 280,
770
+ "y": 320,
771
+ "wires": [
772
+ [
773
+ "258d203c.af111"
774
+ ],
775
+ []
776
+ ]
777
+ },
778
+ {
779
+ "id": "a0b1d851.af5698",
780
+ "type": "os",
781
+ "z": "fa243279.4dbe9",
782
+ "name": "",
783
+ "property": "hostname",
784
+ "x": 280,
785
+ "y": 360,
786
+ "wires": [
787
+ [
788
+ "258d203c.af111"
789
+ ],
790
+ []
791
+ ]
792
+ },
793
+ {
794
+ "id": "9d89654b.a1b158",
795
+ "type": "os",
796
+ "z": "fa243279.4dbe9",
797
+ "name": "",
798
+ "property": "loadavg",
799
+ "x": 280,
800
+ "y": 400,
801
+ "wires": [
802
+ [
803
+ "258d203c.af111"
804
+ ],
805
+ []
806
+ ]
807
+ },
808
+ {
809
+ "id": "3fb37e05.d807c2",
810
+ "type": "os",
811
+ "z": "fa243279.4dbe9",
812
+ "name": "",
813
+ "property": "networkInterfaces",
814
+ "x": 310,
815
+ "y": 440,
816
+ "wires": [
817
+ [
818
+ "258d203c.af111"
819
+ ],
820
+ []
821
+ ]
822
+ },
823
+ {
824
+ "id": "93e4f264.298b8",
825
+ "type": "os",
826
+ "z": "fa243279.4dbe9",
827
+ "name": "",
828
+ "property": "release",
829
+ "x": 280,
830
+ "y": 480,
831
+ "wires": [
832
+ [
833
+ "258d203c.af111"
834
+ ],
835
+ []
836
+ ]
837
+ },
838
+ {
839
+ "id": "44e0bbd2.29e2b4",
840
+ "type": "os",
841
+ "z": "fa243279.4dbe9",
842
+ "name": "",
843
+ "property": "setPriority",
844
+ "x": 280,
845
+ "y": 520,
846
+ "wires": [
847
+ [],
848
+ [
849
+ "9257111d.7fb72"
850
+ ]
851
+ ]
852
+ },
853
+ {
854
+ "id": "867824a3.7194d8",
855
+ "type": "os",
856
+ "z": "fa243279.4dbe9",
857
+ "name": "",
858
+ "property": "tmpdir",
859
+ "x": 270,
860
+ "y": 560,
861
+ "wires": [
862
+ [
863
+ "258d203c.af111"
864
+ ],
865
+ []
866
+ ]
867
+ },
868
+ {
869
+ "id": "d49cda2c.33ab88",
870
+ "type": "os",
871
+ "z": "fa243279.4dbe9",
872
+ "name": "",
873
+ "property": "totalmem",
874
+ "x": 280,
875
+ "y": 600,
876
+ "wires": [
877
+ [
878
+ "258d203c.af111"
879
+ ],
880
+ []
881
+ ]
882
+ },
883
+ {
884
+ "id": "7bd65c52.e940d4",
885
+ "type": "os",
886
+ "z": "fa243279.4dbe9",
887
+ "name": "",
888
+ "property": "type",
889
+ "x": 270,
890
+ "y": 640,
891
+ "wires": [
892
+ [
893
+ "258d203c.af111"
894
+ ],
895
+ []
896
+ ]
897
+ },
898
+ {
899
+ "id": "e242c49a.2de7e8",
900
+ "type": "os",
901
+ "z": "fa243279.4dbe9",
902
+ "name": "",
903
+ "property": "uptime",
904
+ "x": 270,
905
+ "y": 680,
906
+ "wires": [
907
+ [
908
+ "258d203c.af111"
909
+ ],
910
+ []
911
+ ]
912
+ },
913
+ {
914
+ "id": "fe9cdcce.1175",
915
+ "type": "os",
916
+ "z": "fa243279.4dbe9",
917
+ "name": "",
918
+ "property": "userInfo",
919
+ "x": 280,
920
+ "y": 720,
921
+ "wires": [
922
+ [
923
+ "258d203c.af111"
924
+ ],
925
+ []
926
+ ]
927
+ },
928
+ {
929
+ "id": "9257111d.7fb72",
930
+ "type": "debug",
931
+ "z": "fa243279.4dbe9",
932
+ "name": "error",
933
+ "active": true,
934
+ "tosidebar": true,
935
+ "console": false,
936
+ "tostatus": false,
937
+ "complete": "true",
938
+ "targetType": "full",
939
+ "x": 580,
940
+ "y": 480,
941
+ "wires": []
942
+ },
943
+ {
944
+ "id": "c549c07b.bc4b9",
945
+ "type": "debug",
946
+ "z": "11cc261f.ec82da",
947
+ "name": "max",
948
+ "active": true,
949
+ "tosidebar": true,
950
+ "console": false,
951
+ "tostatus": false,
952
+ "complete": "result",
953
+ "targetType": "msg",
954
+ "x": 610,
955
+ "y": 40,
956
+ "wires": []
957
+ },
958
+ {
959
+ "id": "fe98fb5d.1e1d28",
960
+ "type": "inject",
961
+ "z": "11cc261f.ec82da",
962
+ "name": "",
963
+ "repeat": "",
964
+ "crontab": "",
965
+ "once": false,
966
+ "onceDelay": 0.1,
967
+ "topic": "error input",
968
+ "payload": "",
969
+ "payloadType": "date",
970
+ "x": 160,
971
+ "y": 40,
972
+ "wires": [
973
+ [
974
+ "cc146f9a.2d96"
975
+ ]
976
+ ]
977
+ },
978
+ {
979
+ "id": "1e28144c.d43d5c",
980
+ "type": "Data Analysis",
981
+ "z": "11cc261f.ec82da",
982
+ "name": "avg",
983
+ "action": "avg",
984
+ "outputs": 2,
985
+ "outliersStdDevs": "3",
986
+ "term": "3",
987
+ "keyProperty": "msg.topic",
988
+ "dataProperty": "msg.payload",
989
+ "dataProperties": [],
990
+ "x": 390,
991
+ "y": 100,
992
+ "wires": [
993
+ [
994
+ "f90f769f.41f3b8",
995
+ "77385484.cf760c"
996
+ ],
997
+ []
998
+ ]
999
+ },
1000
+ {
1001
+ "id": "f2dfe624.ec12e8",
1002
+ "type": "inject",
1003
+ "z": "11cc261f.ec82da",
1004
+ "name": "[1,2,3,4,5]",
1005
+ "repeat": "",
1006
+ "crontab": "",
1007
+ "once": false,
1008
+ "onceDelay": 0.1,
1009
+ "topic": "",
1010
+ "payload": "[1,2,3,4,5]",
1011
+ "payloadType": "json",
1012
+ "x": 120,
1013
+ "y": 140,
1014
+ "wires": [
1015
+ [
1016
+ "cc146f9a.2d96"
1017
+ ]
1018
+ ]
1019
+ },
1020
+ {
1021
+ "id": "7a6e792d.b98b88",
1022
+ "type": "inject",
1023
+ "z": "11cc261f.ec82da",
1024
+ "name": "[]",
1025
+ "repeat": "",
1026
+ "crontab": "",
1027
+ "once": false,
1028
+ "onceDelay": 0.1,
1029
+ "topic": "",
1030
+ "payload": "[]",
1031
+ "payloadType": "json",
1032
+ "x": 110,
1033
+ "y": 80,
1034
+ "wires": [
1035
+ [
1036
+ "cc146f9a.2d96"
1037
+ ]
1038
+ ]
1039
+ },
1040
+ {
1041
+ "id": "7a86c3e4.f3aa8c",
1042
+ "type": "inject",
1043
+ "z": "11cc261f.ec82da",
1044
+ "name": "[1,2,3,4,5,6]",
1045
+ "repeat": "",
1046
+ "crontab": "",
1047
+ "once": false,
1048
+ "onceDelay": 0.1,
1049
+ "topic": "",
1050
+ "payload": "[1,2,3,4,5,6]",
1051
+ "payloadType": "json",
1052
+ "x": 130,
1053
+ "y": 200,
1054
+ "wires": [
1055
+ [
1056
+ "cc146f9a.2d96"
1057
+ ]
1058
+ ]
1059
+ },
1060
+ {
1061
+ "id": "cc146f9a.2d96",
1062
+ "type": "Data Analysis",
1063
+ "z": "11cc261f.ec82da",
1064
+ "name": "max",
1065
+ "action": "max",
1066
+ "outputs": 2,
1067
+ "outliersStdDevs": "3",
1068
+ "term": "3",
1069
+ "keyProperty": "msg.topic",
1070
+ "dataProperty": "msg.payload",
1071
+ "dataProperties": [],
1072
+ "x": 390,
1073
+ "y": 40,
1074
+ "wires": [
1075
+ [
1076
+ "c549c07b.bc4b9",
1077
+ "1e28144c.d43d5c"
1078
+ ],
1079
+ []
1080
+ ]
1081
+ },
1082
+ {
1083
+ "id": "f90f769f.41f3b8",
1084
+ "type": "debug",
1085
+ "z": "11cc261f.ec82da",
1086
+ "name": "avg",
1087
+ "active": true,
1088
+ "tosidebar": true,
1089
+ "console": false,
1090
+ "tostatus": false,
1091
+ "complete": "result",
1092
+ "targetType": "msg",
1093
+ "x": 610,
1094
+ "y": 100,
1095
+ "wires": []
1096
+ },
1097
+ {
1098
+ "id": "77385484.cf760c",
1099
+ "type": "Data Analysis",
1100
+ "z": "11cc261f.ec82da",
1101
+ "name": "min",
1102
+ "action": "min",
1103
+ "outputs": 2,
1104
+ "outliersStdDevs": "3",
1105
+ "term": "3",
1106
+ "keyProperty": "msg.topic",
1107
+ "dataProperty": "msg.payload",
1108
+ "dataProperties": [],
1109
+ "x": 390,
1110
+ "y": 160,
1111
+ "wires": [
1112
+ [
1113
+ "bc1f7e64.94177",
1114
+ "ca5f5c59.94cd4"
1115
+ ],
1116
+ []
1117
+ ]
1118
+ },
1119
+ {
1120
+ "id": "bc1f7e64.94177",
1121
+ "type": "Data Analysis",
1122
+ "z": "11cc261f.ec82da",
1123
+ "name": "median",
1124
+ "action": "median",
1125
+ "outputs": 2,
1126
+ "outliersStdDevs": "3",
1127
+ "term": "3",
1128
+ "keyProperty": "msg.topic",
1129
+ "dataProperty": "msg.payload",
1130
+ "dataProperties": [],
1131
+ "x": 400,
1132
+ "y": 220,
1133
+ "wires": [
1134
+ [
1135
+ "31efbbf6.5ff994",
1136
+ "e27973fe.8fcd9"
1137
+ ],
1138
+ []
1139
+ ]
1140
+ },
1141
+ {
1142
+ "id": "31efbbf6.5ff994",
1143
+ "type": "Data Analysis",
1144
+ "z": "11cc261f.ec82da",
1145
+ "name": "range",
1146
+ "action": "range",
1147
+ "outputs": 2,
1148
+ "outliersStdDevs": "3",
1149
+ "term": "3",
1150
+ "keyProperty": "msg.topic",
1151
+ "dataProperty": "msg.payload",
1152
+ "dataProperties": [],
1153
+ "x": 390,
1154
+ "y": 280,
1155
+ "wires": [
1156
+ [
1157
+ "d71f02b6.07e4a",
1158
+ "ae37030c.743a"
1159
+ ],
1160
+ []
1161
+ ]
1162
+ },
1163
+ {
1164
+ "id": "d71f02b6.07e4a",
1165
+ "type": "Data Analysis",
1166
+ "z": "11cc261f.ec82da",
1167
+ "name": "sum",
1168
+ "action": "sum",
1169
+ "outputs": 2,
1170
+ "outliersStdDevs": "3",
1171
+ "term": "3",
1172
+ "keyProperty": "msg.topic",
1173
+ "dataProperty": "msg.payload",
1174
+ "dataProperties": [],
1175
+ "x": 390,
1176
+ "y": 340,
1177
+ "wires": [
1178
+ [
1179
+ "5d469222.b4431c",
1180
+ "8d6da6fc.ab2f48"
1181
+ ],
1182
+ []
1183
+ ]
1184
+ },
1185
+ {
1186
+ "id": "ca5f5c59.94cd4",
1187
+ "type": "debug",
1188
+ "z": "11cc261f.ec82da",
1189
+ "name": "min",
1190
+ "active": true,
1191
+ "tosidebar": true,
1192
+ "console": false,
1193
+ "tostatus": false,
1194
+ "complete": "result",
1195
+ "targetType": "msg",
1196
+ "x": 610,
1197
+ "y": 160,
1198
+ "wires": []
1199
+ },
1200
+ {
1201
+ "id": "e27973fe.8fcd9",
1202
+ "type": "debug",
1203
+ "z": "11cc261f.ec82da",
1204
+ "name": "median",
1205
+ "active": true,
1206
+ "tosidebar": true,
1207
+ "console": false,
1208
+ "tostatus": false,
1209
+ "complete": "result",
1210
+ "targetType": "msg",
1211
+ "x": 620,
1212
+ "y": 220,
1213
+ "wires": []
1214
+ },
1215
+ {
1216
+ "id": "ae37030c.743a",
1217
+ "type": "debug",
1218
+ "z": "11cc261f.ec82da",
1219
+ "name": "range",
1220
+ "active": true,
1221
+ "tosidebar": true,
1222
+ "console": false,
1223
+ "tostatus": false,
1224
+ "complete": "result",
1225
+ "targetType": "msg",
1226
+ "x": 610,
1227
+ "y": 260,
1228
+ "wires": []
1229
+ },
1230
+ {
1231
+ "id": "5d469222.b4431c",
1232
+ "type": "debug",
1233
+ "z": "11cc261f.ec82da",
1234
+ "name": "sum",
1235
+ "active": true,
1236
+ "tosidebar": true,
1237
+ "console": false,
1238
+ "tostatus": false,
1239
+ "complete": "result",
1240
+ "targetType": "msg",
1241
+ "x": 610,
1242
+ "y": 300,
1243
+ "wires": []
1244
+ },
1245
+ {
1246
+ "id": "8d6da6fc.ab2f48",
1247
+ "type": "Data Analysis",
1248
+ "z": "11cc261f.ec82da",
1249
+ "name": "variance",
1250
+ "action": "variance",
1251
+ "outputs": 2,
1252
+ "outliersStdDevs": "3",
1253
+ "term": "3",
1254
+ "keyProperty": "msg.topic",
1255
+ "dataProperty": "msg.payload",
1256
+ "dataProperties": [],
1257
+ "x": 400,
1258
+ "y": 400,
1259
+ "wires": [
1260
+ [
1261
+ "80a318a1.8fe578",
1262
+ "e2cf5bf2.9c23e8"
1263
+ ],
1264
+ []
1265
+ ]
1266
+ },
1267
+ {
1268
+ "id": "80a318a1.8fe578",
1269
+ "type": "Data Analysis",
1270
+ "z": "11cc261f.ec82da",
1271
+ "name": "stdDev",
1272
+ "action": "stdDev",
1273
+ "outputs": 3,
1274
+ "term": "3",
1275
+ "keyProperty": "",
1276
+ "dataProperty": "",
1277
+ "dataProperties": [],
1278
+ "x": 400,
1279
+ "y": 460,
1280
+ "wires": [
1281
+ [
1282
+ "9b53372d.9fcc28",
1283
+ "e26ac738.0ac368"
1284
+ ],
1285
+ [],
1286
+ []
1287
+ ]
1288
+ },
1289
+ {
1290
+ "id": "9b53372d.9fcc28",
1291
+ "type": "Data Analysis",
1292
+ "z": "11cc261f.ec82da",
1293
+ "name": "skew",
1294
+ "action": "skew",
1295
+ "outputs": 2,
1296
+ "outliersStdDevs": "3",
1297
+ "term": "3",
1298
+ "keyProperty": "msg.topic",
1299
+ "dataProperty": "msg.payload",
1300
+ "dataProperties": [],
1301
+ "x": 390,
1302
+ "y": 520,
1303
+ "wires": [
1304
+ [
1305
+ "838e4106.d42d1",
1306
+ "3b9f8cb5.bad514"
1307
+ ],
1308
+ []
1309
+ ]
1310
+ },
1311
+ {
1312
+ "id": "e2cf5bf2.9c23e8",
1313
+ "type": "debug",
1314
+ "z": "11cc261f.ec82da",
1315
+ "name": "variance",
1316
+ "active": true,
1317
+ "tosidebar": true,
1318
+ "console": false,
1319
+ "tostatus": false,
1320
+ "complete": "result",
1321
+ "targetType": "msg",
1322
+ "x": 620,
1323
+ "y": 340,
1324
+ "wires": []
1325
+ },
1326
+ {
1327
+ "id": "e26ac738.0ac368",
1328
+ "type": "debug",
1329
+ "z": "11cc261f.ec82da",
1330
+ "name": "stdDev",
1331
+ "active": true,
1332
+ "tosidebar": true,
1333
+ "console": false,
1334
+ "tostatus": false,
1335
+ "complete": "result",
1336
+ "targetType": "msg",
1337
+ "x": 620,
1338
+ "y": 380,
1339
+ "wires": []
1340
+ },
1341
+ {
1342
+ "id": "838e4106.d42d1",
1343
+ "type": "debug",
1344
+ "z": "11cc261f.ec82da",
1345
+ "name": "skew",
1346
+ "active": true,
1347
+ "tosidebar": true,
1348
+ "console": false,
1349
+ "tostatus": false,
1350
+ "complete": "result",
1351
+ "targetType": "msg",
1352
+ "x": 630,
1353
+ "y": 520,
1354
+ "wires": []
1355
+ },
1356
+ {
1357
+ "id": "3b9f8cb5.bad514",
1358
+ "type": "Data Analysis",
1359
+ "z": "11cc261f.ec82da",
1360
+ "name": "movingAvgCumulative",
1361
+ "action": "movingAvgCumulative",
1362
+ "outputs": 2,
1363
+ "outliersStdDevs": "3",
1364
+ "term": "3",
1365
+ "keyProperty": "msg.topic",
1366
+ "dataProperty": "msg.payload",
1367
+ "dataProperties": [],
1368
+ "x": 420,
1369
+ "y": 580,
1370
+ "wires": [
1371
+ [
1372
+ "ac835c8.491cba",
1373
+ "64eb625e.2303fc"
1374
+ ],
1375
+ []
1376
+ ]
1377
+ },
1378
+ {
1379
+ "id": "ac835c8.491cba",
1380
+ "type": "debug",
1381
+ "z": "11cc261f.ec82da",
1382
+ "name": "movingAvgCumulative",
1383
+ "active": true,
1384
+ "tosidebar": true,
1385
+ "console": false,
1386
+ "tostatus": false,
1387
+ "complete": "result",
1388
+ "targetType": "msg",
1389
+ "x": 660,
1390
+ "y": 580,
1391
+ "wires": []
1392
+ },
1393
+ {
1394
+ "id": "40e08530.b2fc2c",
1395
+ "type": "debug",
1396
+ "z": "11cc261f.ec82da",
1397
+ "name": "movingAvgSimple",
1398
+ "active": true,
1399
+ "tosidebar": true,
1400
+ "console": false,
1401
+ "tostatus": false,
1402
+ "complete": "result",
1403
+ "targetType": "msg",
1404
+ "x": 650,
1405
+ "y": 620,
1406
+ "wires": []
1407
+ },
1408
+ {
1409
+ "id": "64eb625e.2303fc",
1410
+ "type": "Data Analysis",
1411
+ "z": "11cc261f.ec82da",
1412
+ "name": "movingAvgSimple",
1413
+ "action": "movingAvgSimple",
1414
+ "outputs": 2,
1415
+ "outliersStdDevs": "3",
1416
+ "term": "3",
1417
+ "keyProperty": "msg.topic",
1418
+ "dataProperty": "msg.payload",
1419
+ "dataProperties": [],
1420
+ "x": 410,
1421
+ "y": 640,
1422
+ "wires": [
1423
+ [
1424
+ "40e08530.b2fc2c",
1425
+ "c37806d2.a5c5f8"
1426
+ ],
1427
+ []
1428
+ ]
1429
+ },
1430
+ {
1431
+ "id": "96fa5b66.4c61b8",
1432
+ "type": "inject",
1433
+ "z": "11cc261f.ec82da",
1434
+ "name": "[1]",
1435
+ "repeat": "",
1436
+ "crontab": "",
1437
+ "once": false,
1438
+ "onceDelay": 0.1,
1439
+ "topic": "",
1440
+ "payload": "[1]",
1441
+ "payloadType": "json",
1442
+ "x": 110,
1443
+ "y": 260,
1444
+ "wires": [
1445
+ [
1446
+ "cc146f9a.2d96"
1447
+ ]
1448
+ ]
1449
+ },
1450
+ {
1451
+ "id": "3cb6979e.12f878",
1452
+ "type": "Data Analysis",
1453
+ "z": "11cc261f.ec82da",
1454
+ "name": "movingAvgExponential",
1455
+ "action": "movingAvgExponential",
1456
+ "outputs": 2,
1457
+ "outliersStdDevs": "3",
1458
+ "term": "0.5",
1459
+ "keyProperty": "msg.topic",
1460
+ "dataProperty": "msg.payload",
1461
+ "dataProperties": [],
1462
+ "x": 420,
1463
+ "y": 760,
1464
+ "wires": [
1465
+ [
1466
+ "8ce2398a.805488",
1467
+ "b13dd76e.d59c48"
1468
+ ],
1469
+ []
1470
+ ]
1471
+ },
1472
+ {
1473
+ "id": "c37806d2.a5c5f8",
1474
+ "type": "Data Analysis",
1475
+ "z": "11cc261f.ec82da",
1476
+ "name": "movingAvgWeighted",
1477
+ "action": "movingAvgWeighted",
1478
+ "outputs": 2,
1479
+ "outliersStdDevs": "3",
1480
+ "term": "3",
1481
+ "keyProperty": "msg.topic",
1482
+ "dataProperty": "msg.payload",
1483
+ "dataProperties": [],
1484
+ "x": 420,
1485
+ "y": 700,
1486
+ "wires": [
1487
+ [
1488
+ "3cb6979e.12f878",
1489
+ "8a9c80eb.1a406"
1490
+ ],
1491
+ []
1492
+ ]
1493
+ },
1494
+ {
1495
+ "id": "8a9c80eb.1a406",
1496
+ "type": "debug",
1497
+ "z": "11cc261f.ec82da",
1498
+ "name": "movingAvgWeighted",
1499
+ "active": true,
1500
+ "tosidebar": true,
1501
+ "console": false,
1502
+ "tostatus": false,
1503
+ "complete": "result",
1504
+ "targetType": "msg",
1505
+ "x": 680,
1506
+ "y": 700,
1507
+ "wires": []
1508
+ },
1509
+ {
1510
+ "id": "8ce2398a.805488",
1511
+ "type": "debug",
1512
+ "z": "11cc261f.ec82da",
1513
+ "name": "movingAvgExponential",
1514
+ "active": true,
1515
+ "tosidebar": true,
1516
+ "console": false,
1517
+ "tostatus": false,
1518
+ "complete": "result",
1519
+ "targetType": "msg",
1520
+ "x": 680,
1521
+ "y": 760,
1522
+ "wires": []
1523
+ },
1524
+ {
1525
+ "id": "b13dd76e.d59c48",
1526
+ "type": "Data Analysis",
1527
+ "z": "11cc261f.ec82da",
1528
+ "name": "deltas",
1529
+ "action": "deltas",
1530
+ "outputs": 2,
1531
+ "outliersStdDevs": "3",
1532
+ "term": "3",
1533
+ "keyProperty": "msg.topic",
1534
+ "dataProperty": "msg.payload",
1535
+ "dataProperties": [],
1536
+ "x": 370,
1537
+ "y": 820,
1538
+ "wires": [
1539
+ [
1540
+ "8706b576.2b83e8",
1541
+ "853dbd38.70d92"
1542
+ ],
1543
+ []
1544
+ ]
1545
+ },
1546
+ {
1547
+ "id": "8706b576.2b83e8",
1548
+ "type": "debug",
1549
+ "z": "11cc261f.ec82da",
1550
+ "name": "deltas",
1551
+ "active": true,
1552
+ "tosidebar": true,
1553
+ "console": false,
1554
+ "tostatus": false,
1555
+ "complete": "result",
1556
+ "targetType": "msg",
1557
+ "x": 630,
1558
+ "y": 820,
1559
+ "wires": []
1560
+ },
1561
+ {
1562
+ "id": "3b8b4e1c.24e322",
1563
+ "type": "inject",
1564
+ "z": "11cc261f.ec82da",
1565
+ "name": "[8,4,5,3,2,1]",
1566
+ "repeat": "",
1567
+ "crontab": "",
1568
+ "once": false,
1569
+ "onceDelay": 0.1,
1570
+ "topic": "",
1571
+ "payload": "[8,4,5,3,2,1]",
1572
+ "payloadType": "json",
1573
+ "x": 130,
1574
+ "y": 320,
1575
+ "wires": [
1576
+ [
1577
+ "cc146f9a.2d96"
1578
+ ]
1579
+ ]
1580
+ },
1581
+ {
1582
+ "id": "254df734.5b5628",
1583
+ "type": "debug",
1584
+ "z": "11cc261f.ec82da",
1585
+ "name": "deltaNormalised",
1586
+ "active": true,
1587
+ "tosidebar": true,
1588
+ "console": false,
1589
+ "tostatus": false,
1590
+ "complete": "result",
1591
+ "targetType": "msg",
1592
+ "x": 640,
1593
+ "y": 880,
1594
+ "wires": []
1595
+ },
1596
+ {
1597
+ "id": "853dbd38.70d92",
1598
+ "type": "Data Analysis",
1599
+ "z": "11cc261f.ec82da",
1600
+ "name": "deltaNormalised",
1601
+ "action": "deltaNormalised",
1602
+ "columns": "",
1603
+ "outputs": 2,
1604
+ "outliersStdDevs": "3",
1605
+ "term": "3",
1606
+ "keyProperty": "msg.topic",
1607
+ "dataProperty": "msg.payload",
1608
+ "dataProperties": [],
1609
+ "x": 400,
1610
+ "y": 880,
1611
+ "wires": [
1612
+ [
1613
+ "254df734.5b5628",
1614
+ "369bed28.8f2102"
1615
+ ],
1616
+ []
1617
+ ]
1618
+ },
1619
+ {
1620
+ "id": "6b313397.1721dc",
1621
+ "type": "debug",
1622
+ "z": "11cc261f.ec82da",
1623
+ "name": "normalise",
1624
+ "active": true,
1625
+ "tosidebar": true,
1626
+ "console": false,
1627
+ "tostatus": false,
1628
+ "complete": "result",
1629
+ "targetType": "msg",
1630
+ "x": 620,
1631
+ "y": 940,
1632
+ "wires": []
1633
+ },
1634
+ {
1635
+ "id": "ce485240.bb0fa",
1636
+ "type": "debug",
1637
+ "z": "11cc261f.ec82da",
1638
+ "name": "standardization",
1639
+ "active": true,
1640
+ "tosidebar": true,
1641
+ "console": false,
1642
+ "tostatus": false,
1643
+ "complete": "result",
1644
+ "targetType": "msg",
1645
+ "statusVal": "",
1646
+ "statusType": "auto",
1647
+ "x": 640,
1648
+ "y": 1000,
1649
+ "wires": []
1650
+ },
1651
+ {
1652
+ "id": "369bed28.8f2102",
1653
+ "type": "Data Analysis",
1654
+ "z": "11cc261f.ec82da",
1655
+ "name": "normalise",
1656
+ "action": "normalize",
1657
+ "outputs": 2,
1658
+ "outliersStdDevs": "3",
1659
+ "term": "3",
1660
+ "keyProperty": "msg.topic",
1661
+ "dataProperty": "msg.payload",
1662
+ "dataProperties": [],
1663
+ "x": 380,
1664
+ "y": 940,
1665
+ "wires": [
1666
+ [
1667
+ "6b313397.1721dc",
1668
+ "b9c0be7.93f5b4"
1669
+ ],
1670
+ []
1671
+ ]
1672
+ },
1673
+ {
1674
+ "id": "b9c0be7.93f5b4",
1675
+ "type": "Data Analysis",
1676
+ "z": "11cc261f.ec82da",
1677
+ "name": "standardization",
1678
+ "action": "standardize",
1679
+ "columns": "",
1680
+ "outputs": 2,
1681
+ "outliersStdDevs": "3",
1682
+ "term": "3",
1683
+ "keyProperty": "msg.topic",
1684
+ "dataProperty": "msg.payload",
1685
+ "dataProperties": [],
1686
+ "x": 400,
1687
+ "y": 1000,
1688
+ "wires": [
1689
+ [
1690
+ "ce485240.bb0fa",
1691
+ "1ffd982aa6657013"
1692
+ ],
1693
+ []
1694
+ ]
1695
+ },
1696
+ {
1697
+ "id": "1dd23162.47096f",
1698
+ "type": "Data Analysis",
1699
+ "z": "11cc261f.ec82da",
1700
+ "name": "",
1701
+ "action": "min",
1702
+ "outputs": 2,
1703
+ "outliersStdDevs": "3",
1704
+ "term": "3",
1705
+ "keyProperty": "msg.topic",
1706
+ "dataProperty": "msg.payload.data",
1707
+ "dataProperties": [],
1708
+ "x": 1140,
1709
+ "y": 40,
1710
+ "wires": [
1711
+ [
1712
+ "89fa71fb.d157d"
1713
+ ],
1714
+ []
1715
+ ]
1716
+ },
1717
+ {
1718
+ "id": "89fa71fb.d157d",
1719
+ "type": "test",
1720
+ "z": "11cc261f.ec82da",
1721
+ "name": "",
1722
+ "payload": "{\"data\":[1,2,3]}",
1723
+ "payloadType": "json",
1724
+ "result": "1",
1725
+ "resultType": "num",
1726
+ "resultProperty": "msg.result",
1727
+ "topic": "",
1728
+ "x": 870,
1729
+ "y": 40,
1730
+ "wires": [
1731
+ [
1732
+ "1dd23162.47096f"
1733
+ ],
1734
+ [],
1735
+ []
1736
+ ]
1737
+ },
1738
+ {
1739
+ "id": "1ffd982aa6657013",
1740
+ "type": "Data Analysis",
1741
+ "z": "11cc261f.ec82da",
1742
+ "name": "difference",
1743
+ "action": "difference",
1744
+ "columns": "",
1745
+ "outputs": 2,
1746
+ "outliersBase": "avg",
1747
+ "outliersStdDevs": "3",
1748
+ "term": "10",
1749
+ "keyProperty": "msg.topic",
1750
+ "dataProperty": "msg.payload",
1751
+ "dataProperties": [
1752
+ "msg.payload[0]",
1753
+ "msg.payload[1]"
1754
+ ],
1755
+ "x": 380,
1756
+ "y": 1060,
1757
+ "wires": [
1758
+ [
1759
+ "41453a54a3914a81"
1760
+ ],
1761
+ []
1762
+ ]
1763
+ },
1764
+ {
1765
+ "id": "41453a54a3914a81",
1766
+ "type": "Data Analysis",
1767
+ "z": "11cc261f.ec82da",
1768
+ "name": "difference seasonal",
1769
+ "action": "differenceSeasonal",
1770
+ "columns": "",
1771
+ "lag": "2",
1772
+ "outputs": 2,
1773
+ "outliersBase": "avg",
1774
+ "outliersStdDevs": "3",
1775
+ "term": "10",
1776
+ "keyProperty": "msg.topic",
1777
+ "dataProperty": "msg.payload",
1778
+ "dataProperties": [
1779
+ "msg.payload[0]",
1780
+ "msg.payload[1]"
1781
+ ],
1782
+ "x": 410,
1783
+ "y": 1120,
1784
+ "wires": [
1785
+ [
1786
+ "25c998531bce6e6b"
1787
+ ],
1788
+ []
1789
+ ]
1790
+ },
1791
+ {
1792
+ "id": "25c998531bce6e6b",
1793
+ "type": "Data Analysis",
1794
+ "z": "11cc261f.ec82da",
1795
+ "name": "diifference second order",
1796
+ "action": "differenceSecondOrder",
1797
+ "columns": "",
1798
+ "lag": "",
1799
+ "outputs": 2,
1800
+ "outliersBase": "avg",
1801
+ "outliersStdDevs": "3",
1802
+ "term": "10",
1803
+ "keyProperty": "msg.topic",
1804
+ "dataProperty": "msg.payload",
1805
+ "dataProperties": [
1806
+ "msg.payload[0]",
1807
+ "msg.payload[1]"
1808
+ ],
1809
+ "x": 430,
1810
+ "y": 1180,
1811
+ "wires": [
1812
+ [
1813
+ "3b47871eb15d2f72"
1814
+ ],
1815
+ []
1816
+ ]
1817
+ },
1818
+ {
1819
+ "id": "3b47871eb15d2f72",
1820
+ "type": "Data Analysis",
1821
+ "z": "11cc261f.ec82da",
1822
+ "name": "difference seasonal second order",
1823
+ "action": "differenceSeasonalSecondOrder",
1824
+ "columns": "",
1825
+ "lag": "2",
1826
+ "outputs": 2,
1827
+ "outliersBase": "avg",
1828
+ "outliersStdDevs": "3",
1829
+ "term": "10",
1830
+ "keyProperty": "msg.topic",
1831
+ "dataProperty": "msg.payload",
1832
+ "dataProperties": [
1833
+ "msg.payload[0]",
1834
+ "msg.payload[1]"
1835
+ ],
1836
+ "x": 460,
1837
+ "y": 1240,
1838
+ "wires": [
1839
+ [],
1840
+ []
1841
+ ]
1842
+ },
1843
+ {
1844
+ "id": "a749368e.985a18",
1845
+ "type": "Data Analysis",
1846
+ "z": "cf595649.931658",
1847
+ "name": "",
1848
+ "action": "realtime",
1849
+ "outputs": 3,
1850
+ "outliersBase": "avg",
1851
+ "outliersStdDevs": "2",
1852
+ "term": "3",
1853
+ "keyProperty": "msg.payload.assignedColor",
1854
+ "dataProperty": "msg.payload.salary",
1855
+ "dataProperties": [],
1856
+ "x": 437,
1857
+ "y": 80,
1858
+ "wires": [
1859
+ [],
1860
+ [
1861
+ "a6cd6306.a217c"
1862
+ ],
1863
+ [
1864
+ "a37e4b57.2a7778"
1865
+ ]
1866
+ ]
1867
+ },
1868
+ {
1869
+ "id": "a6cd6306.a217c",
1870
+ "type": "debug",
1871
+ "z": "cf595649.931658",
1872
+ "name": "realtime",
1873
+ "active": true,
1874
+ "tosidebar": true,
1875
+ "console": false,
1876
+ "tostatus": false,
1877
+ "complete": "result",
1878
+ "targetType": "msg",
1879
+ "x": 680,
1880
+ "y": 120,
1881
+ "wires": []
1882
+ },
1883
+ {
1884
+ "id": "62f3c2c7.8c3b7c",
1885
+ "type": "inject",
1886
+ "z": "cf595649.931658",
1887
+ "name": "@stats",
1888
+ "repeat": "",
1889
+ "crontab": "",
1890
+ "once": false,
1891
+ "onceDelay": 0.1,
1892
+ "topic": "@stats",
1893
+ "payload": "",
1894
+ "payloadType": "date",
1895
+ "x": 150,
1896
+ "y": 200,
1897
+ "wires": [
1898
+ [
1899
+ "a749368e.985a18",
1900
+ "770e1ad6.5fe4f4"
1901
+ ]
1902
+ ]
1903
+ },
1904
+ {
1905
+ "id": "7f16af76.d1c2b",
1906
+ "type": "Load Injector",
1907
+ "z": "cf595649.931658",
1908
+ "name": "",
1909
+ "thinktimemin": "10",
1910
+ "thinktimemax": "100",
1911
+ "runtime": "60",
1912
+ "payload": "",
1913
+ "payloadType": "date",
1914
+ "topic": "",
1915
+ "topicType": "str",
1916
+ "x": 150,
1917
+ "y": 40,
1918
+ "wires": [
1919
+ [
1920
+ "82a035c7.eb2198"
1921
+ ],
1922
+ []
1923
+ ]
1924
+ },
1925
+ {
1926
+ "id": "770e1ad6.5fe4f4",
1927
+ "type": "Data Analysis",
1928
+ "z": "cf595649.931658",
1929
+ "name": "",
1930
+ "action": "pearsonR",
1931
+ "outputs": 2,
1932
+ "outliersStdDevs": "3",
1933
+ "term": "3",
1934
+ "keyProperty": "msg.topic",
1935
+ "dataProperty": "msg.payload",
1936
+ "dataProperties": [
1937
+ "msg.payload.salary",
1938
+ "msg.payload.age",
1939
+ "msg.payload.height"
1940
+ ],
1941
+ "x": 430,
1942
+ "y": 160,
1943
+ "wires": [
1944
+ [],
1945
+ [
1946
+ "a6cd6306.a217c"
1947
+ ]
1948
+ ]
1949
+ },
1950
+ {
1951
+ "id": "a37e4b57.2a7778",
1952
+ "type": "debug",
1953
+ "z": "cf595649.931658",
1954
+ "name": "outlier",
1955
+ "active": true,
1956
+ "tosidebar": true,
1957
+ "console": false,
1958
+ "tostatus": false,
1959
+ "complete": "payload",
1960
+ "targetType": "msg",
1961
+ "x": 670,
1962
+ "y": 200,
1963
+ "wires": []
1964
+ },
1965
+ {
1966
+ "id": "65bd1564.34a0cc",
1967
+ "type": "inject",
1968
+ "z": "cf595649.931658",
1969
+ "name": "outiler",
1970
+ "repeat": "",
1971
+ "crontab": "",
1972
+ "once": false,
1973
+ "onceDelay": 0.1,
1974
+ "topic": "",
1975
+ "payload": "{\"name\":\"test outlier \",\"work\":\"outlier\",\"email\":\"{{email}}\",\"address\":\"{{int 1 100}} {{street}}\",\"country\":\"{{country}}\",\"salary\":700,\"assignedColor\":\"red\",\"age\":69,\"height\":2.6}",
1976
+ "payloadType": "json",
1977
+ "x": 130,
1978
+ "y": 280,
1979
+ "wires": [
1980
+ [
1981
+ "a749368e.985a18"
1982
+ ]
1983
+ ]
1984
+ },
1985
+ {
1986
+ "id": "82a035c7.eb2198",
1987
+ "type": "data-generator",
1988
+ "z": "cf595649.931658",
1989
+ "name": "",
1990
+ "field": "payload",
1991
+ "fieldType": "msg",
1992
+ "syntax": "json",
1993
+ "template": "{\n \"name\": \"{{firstName}} {{lastName}}\",\n \"work\": \"{{company}}\",\n \"email\": \"{{email}}\",\n \"address\": \"{{int 1 100}} {{street}}\",\n \"country\": \"{{country}}\",\n \"salary\": {{float 50 150 '0.00'}},\n \"assignedColor\":\"{{color}}\",\n \"age\": {{int 16 67 '0'}},\n \"height\": {{float 1.5 2.5 '0.0'}}\n}",
1994
+ "x": 160,
1995
+ "y": 120,
1996
+ "wires": [
1997
+ [
1998
+ "a749368e.985a18",
1999
+ "770e1ad6.5fe4f4"
2000
+ ]
2001
+ ]
2002
+ },
2003
+ {
2004
+ "id": "2ce3786.acae688",
2005
+ "type": "transform",
2006
+ "z": "d9c7ae0e.cb9a9",
2007
+ "name": "",
2008
+ "actionSource": "JSON",
2009
+ "actionTarget": "String",
2010
+ "delimiter": ",",
2011
+ "x": 580,
2012
+ "y": 60,
2013
+ "wires": [
2014
+ [
2015
+ "5ac2ef6c.d0953"
2016
+ ],
2017
+ []
2018
+ ]
2019
+ },
2020
+ {
2021
+ "id": "5ac2ef6c.d0953",
2022
+ "type": "test",
2023
+ "z": "d9c7ae0e.cb9a9",
2024
+ "name": "",
2025
+ "payload": "{\"a\":1,\"b\":1}",
2026
+ "payloadType": "json",
2027
+ "result": "{\"a\":1,\"b\":1}",
2028
+ "resultType": "str",
2029
+ "resultProperty": "msg.payload",
2030
+ "topic": "",
2031
+ "x": 300,
2032
+ "y": 120,
2033
+ "wires": [
2034
+ [
2035
+ "2ce3786.acae688"
2036
+ ],
2037
+ [],
2038
+ []
2039
+ ]
2040
+ },
2041
+ {
2042
+ "id": "d9a04503.7fc3a8",
2043
+ "type": "debug",
2044
+ "z": "d9c7ae0e.cb9a9",
2045
+ "name": "",
2046
+ "active": true,
2047
+ "tosidebar": true,
2048
+ "console": false,
2049
+ "tostatus": false,
2050
+ "complete": "true",
2051
+ "targetType": "full",
2052
+ "x": 730,
2053
+ "y": 340,
2054
+ "wires": []
2055
+ },
2056
+ {
2057
+ "id": "df3844b8.d62658",
2058
+ "type": "test",
2059
+ "z": "d9c7ae0e.cb9a9",
2060
+ "name": "",
2061
+ "payload": "{\"a\":1,\"b\":1}",
2062
+ "payloadType": "str",
2063
+ "result": "{\"a\":1,\"b\":1}",
2064
+ "resultType": "json",
2065
+ "resultProperty": "msg.payload",
2066
+ "topic": "",
2067
+ "x": 300,
2068
+ "y": 220,
2069
+ "wires": [
2070
+ [
2071
+ "7c0de4f5.afbe7c"
2072
+ ],
2073
+ [],
2074
+ []
2075
+ ]
2076
+ },
2077
+ {
2078
+ "id": "7c0de4f5.afbe7c",
2079
+ "type": "transform",
2080
+ "z": "d9c7ae0e.cb9a9",
2081
+ "name": "",
2082
+ "actionSource": "String",
2083
+ "actionTarget": "JSON",
2084
+ "delimiter": ",",
2085
+ "x": 560,
2086
+ "y": 160,
2087
+ "wires": [
2088
+ [
2089
+ "df3844b8.d62658"
2090
+ ],
2091
+ []
2092
+ ]
2093
+ },
2094
+ {
2095
+ "id": "b61d362a.9b7288",
2096
+ "type": "inject",
2097
+ "z": "d9c7ae0e.cb9a9",
2098
+ "name": "",
2099
+ "repeat": "",
2100
+ "crontab": "",
2101
+ "once": false,
2102
+ "onceDelay": 0.1,
2103
+ "topic": "",
2104
+ "payload": "",
2105
+ "payloadType": "date",
2106
+ "x": 80,
2107
+ "y": 40,
2108
+ "wires": [
2109
+ [
2110
+ "5ac2ef6c.d0953",
2111
+ "df3844b8.d62658",
2112
+ "1996fa8b.414205"
2113
+ ]
2114
+ ]
2115
+ },
2116
+ {
2117
+ "id": "eaa68e41.81cce",
2118
+ "type": "transform",
2119
+ "z": "d9c7ae0e.cb9a9",
2120
+ "name": "",
2121
+ "actionSource": "JSON",
2122
+ "actionTarget": "Array",
2123
+ "delimiter": ",",
2124
+ "x": 560,
2125
+ "y": 240,
2126
+ "wires": [
2127
+ [
2128
+ "d9a04503.7fc3a8",
2129
+ "1996fa8b.414205"
2130
+ ],
2131
+ []
2132
+ ]
2133
+ },
2134
+ {
2135
+ "id": "1996fa8b.414205",
2136
+ "type": "test",
2137
+ "z": "d9c7ae0e.cb9a9",
2138
+ "name": "",
2139
+ "escapeString": false,
2140
+ "payload": "{\"a\":1,\"b\":\"two\"}",
2141
+ "payloadType": "json",
2142
+ "result": "[[\"a\",1],[\"b\",\"two\"]]",
2143
+ "resultType": "json",
2144
+ "resultProperty": "msg.payload",
2145
+ "topic": "",
2146
+ "x": 300,
2147
+ "y": 300,
2148
+ "wires": [
2149
+ [
2150
+ "eaa68e41.81cce",
2151
+ "c1be8cd5.2856e"
2152
+ ],
2153
+ [],
2154
+ []
2155
+ ]
2156
+ },
2157
+ {
2158
+ "id": "c56f126c.f8cf6",
2159
+ "type": "inject",
2160
+ "z": "d9c7ae0e.cb9a9",
2161
+ "name": "ISO8385 message",
2162
+ "repeat": "",
2163
+ "crontab": "",
2164
+ "once": false,
2165
+ "onceDelay": 0.1,
2166
+ "topic": "",
2167
+ "payload": "[49,50,51,52,68,48,50,48,48,48,48,48,48,50,67,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,49,54,49,50,51,52,53,54,55,56,57,48,49,50,51,52,53,54,48,48,48,48,48,48,48,48,53,54,57,57,48,48,48,50,51,52,48,48,48,52,51,49,51,50,51,51,51,52,51,53,50,48,50,48,50,48,51,54,51,55,51,56,51,57,51,48,51,49,51,50,51,51,51,52,50,48,50,48,50,48,50,48,50,48,50,48,48,48,48,57,52,50,52,67,52,49,52,56,50,48,52,50,52,67,52,49,52,56]",
2168
+ "payloadType": "bin",
2169
+ "x": 170,
2170
+ "y": 420,
2171
+ "wires": [
2172
+ [
2173
+ "1ff5bd86.f88092"
2174
+ ]
2175
+ ]
2176
+ },
2177
+ {
2178
+ "id": "1ff5bd86.f88092",
2179
+ "type": "transform",
2180
+ "z": "d9c7ae0e.cb9a9",
2181
+ "name": "",
2182
+ "actionSource": "ISO8385",
2183
+ "actionTarget": "Array",
2184
+ "delimiter": ",",
2185
+ "x": 510,
2186
+ "y": 420,
2187
+ "wires": [
2188
+ [
2189
+ "d9a04503.7fc3a8"
2190
+ ],
2191
+ []
2192
+ ]
2193
+ },
2194
+ {
2195
+ "id": "5fef790b.8b87d8",
2196
+ "type": "comment",
2197
+ "z": "d9c7ae0e.cb9a9",
2198
+ "name": "Experimental",
2199
+ "info": "# Experimental",
2200
+ "x": 310,
2201
+ "y": 40,
2202
+ "wires": []
2203
+ },
2204
+ {
2205
+ "id": "c1be8cd5.2856e",
2206
+ "type": "transform",
2207
+ "z": "d9c7ae0e.cb9a9",
2208
+ "name": "",
2209
+ "actionSource": "JSON",
2210
+ "actionTarget": "HTML",
2211
+ "delimiter": ",",
2212
+ "x": 520,
2213
+ "y": 500,
2214
+ "wires": [
2215
+ [
2216
+ "d9a04503.7fc3a8"
2217
+ ],
2218
+ []
2219
+ ]
2220
+ },
2221
+ {
2222
+ "id": "4442914142aea731",
2223
+ "type": "file in",
2224
+ "z": "d9c7ae0e.cb9a9",
2225
+ "name": "int2matrix2x3.npy",
2226
+ "filename": "test/data/int2matrix2x3.npy",
2227
+ "filenameType": "str",
2228
+ "format": "",
2229
+ "chunk": false,
2230
+ "sendError": false,
2231
+ "encoding": "none",
2232
+ "allProps": false,
2233
+ "x": 310,
2234
+ "y": 640,
2235
+ "wires": [
2236
+ [
2237
+ "d9a04503.7fc3a8",
2238
+ "b1411e5351c0347e"
2239
+ ]
2240
+ ]
2241
+ },
2242
+ {
2243
+ "id": "e8f8458f9e31476a",
2244
+ "type": "inject",
2245
+ "z": "d9c7ae0e.cb9a9",
2246
+ "name": "",
2247
+ "props": [
2248
+ {
2249
+ "p": "payload"
2250
+ },
2251
+ {
2252
+ "p": "topic",
2253
+ "vt": "str"
2254
+ }
2255
+ ],
2256
+ "repeat": "",
2257
+ "crontab": "",
2258
+ "once": false,
2259
+ "onceDelay": 0.1,
2260
+ "topic": "",
2261
+ "payload": "",
2262
+ "payloadType": "date",
2263
+ "x": 100,
2264
+ "y": 640,
2265
+ "wires": [
2266
+ [
2267
+ "4442914142aea731"
2268
+ ]
2269
+ ]
2270
+ },
2271
+ {
2272
+ "id": "b1411e5351c0347e",
2273
+ "type": "transform",
2274
+ "z": "d9c7ae0e.cb9a9",
2275
+ "name": "",
2276
+ "actionSource": "npy",
2277
+ "actionTarget": "JSON",
2278
+ "sourceProperty": "msg.payload",
2279
+ "targetProperty": "msg.payload",
2280
+ "topicProperty": "msg.topic",
2281
+ "maxMessages": 1000,
2282
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
2283
+ "schemaType": "json",
2284
+ "skipLeading": 0,
2285
+ "skipTrailing": 0,
2286
+ "delimiter": ",",
2287
+ "compressionType": "setGzip",
2288
+ "x": 570,
2289
+ "y": 640,
2290
+ "wires": [
2291
+ [
2292
+ "d9a04503.7fc3a8"
2293
+ ],
2294
+ []
2295
+ ]
2296
+ },
2297
+ {
2298
+ "id": "4bed6788.398bc8",
2299
+ "type": "Load Injector",
2300
+ "z": "cf804fb2.6df8c",
2301
+ "name": "",
2302
+ "thinktimemin": "100",
2303
+ "thinktimemax": "5000",
2304
+ "runtime": "30",
2305
+ "payload": "",
2306
+ "payloadType": "date",
2307
+ "topic": "",
2308
+ "topicType": "str",
2309
+ "x": 190,
2310
+ "y": 100,
2311
+ "wires": [
2312
+ [
2313
+ "df6c40ba.fb661"
2314
+ ],
2315
+ [
2316
+ "dd8f915be7585f46"
2317
+ ]
2318
+ ]
2319
+ },
2320
+ {
2321
+ "id": "df6c40ba.fb661",
2322
+ "type": "function",
2323
+ "z": "cf804fb2.6df8c",
2324
+ "name": "Message count",
2325
+ "func": "var count = context.get('count')||0;\ncontext.set('count',++count);\nnode.status({fill:\"green\",shape:\"ring\",text:\"count: \"+count});\nreturn msg;",
2326
+ "outputs": 1,
2327
+ "noerr": 0,
2328
+ "initialize": "",
2329
+ "finalize": "",
2330
+ "libs": [],
2331
+ "x": 600,
2332
+ "y": 100,
2333
+ "wires": [
2334
+ []
2335
+ ]
2336
+ },
2337
+ {
2338
+ "id": "dd8f915be7585f46",
2339
+ "type": "debug",
2340
+ "z": "cf804fb2.6df8c",
2341
+ "name": "debug 1",
2342
+ "active": true,
2343
+ "tosidebar": true,
2344
+ "console": false,
2345
+ "tostatus": false,
2346
+ "complete": "false",
2347
+ "statusVal": "",
2348
+ "statusType": "auto",
2349
+ "x": 580,
2350
+ "y": 160,
2351
+ "wires": []
2352
+ },
2353
+ {
2354
+ "id": "c4e5d98c.1db6f8",
2355
+ "type": "Monitor Flow",
2356
+ "z": "fcc005d5.131ee8",
2357
+ "name": "",
2358
+ "x": 370,
2359
+ "y": 60,
2360
+ "wires": [
2361
+ []
2362
+ ]
2363
+ },
2364
+ {
2365
+ "id": "6985d392.2b65ac",
2366
+ "type": "Load Injector",
2367
+ "z": "fcc005d5.131ee8",
2368
+ "name": "",
2369
+ "thinktimemin": 1000,
2370
+ "thinktimemax": 10000,
2371
+ "runtime": 60,
2372
+ "payload": "",
2373
+ "payloadType": "date",
2374
+ "x": 150,
2375
+ "y": 60,
2376
+ "wires": [
2377
+ [
2378
+ "c4e5d98c.1db6f8"
2379
+ ],
2380
+ []
2381
+ ]
2382
+ },
2383
+ {
2384
+ "id": "a761e268.19bc7",
2385
+ "type": "append",
2386
+ "z": "6dd63ebd.bf044",
2387
+ "name": "append",
2388
+ "files": [
2389
+ {
2390
+ "value": "./testData.txt",
2391
+ "type": "require"
2392
+ },
2393
+ {
2394
+ "value": "********",
2395
+ "type": "text"
2396
+ }
2397
+ ],
2398
+ "x": 300,
2399
+ "y": 140,
2400
+ "wires": [
2401
+ [
2402
+ "65aa2f4d.847f9"
2403
+ ]
2404
+ ]
2405
+ },
2406
+ {
2407
+ "id": "64beb83a.018ed8",
2408
+ "type": "inject",
2409
+ "z": "6dd63ebd.bf044",
2410
+ "name": "",
2411
+ "repeat": "",
2412
+ "crontab": "",
2413
+ "once": false,
2414
+ "onceDelay": 0.1,
2415
+ "topic": "",
2416
+ "payload": "",
2417
+ "payloadType": "str",
2418
+ "x": 110,
2419
+ "y": 140,
2420
+ "wires": [
2421
+ [
2422
+ "a761e268.19bc7"
2423
+ ]
2424
+ ]
2425
+ },
2426
+ {
2427
+ "id": "65aa2f4d.847f9",
2428
+ "type": "debug",
2429
+ "z": "6dd63ebd.bf044",
2430
+ "name": "",
2431
+ "active": true,
2432
+ "tosidebar": true,
2433
+ "console": false,
2434
+ "tostatus": false,
2435
+ "complete": "payload",
2436
+ "targetType": "msg",
2437
+ "x": 520,
2438
+ "y": 140,
2439
+ "wires": []
2440
+ },
2441
+ {
2442
+ "id": "ffd72c7.5d152d",
2443
+ "type": "Host Available",
2444
+ "z": "955f4808.fd1898",
2445
+ "name": "",
2446
+ "host": "localhost",
2447
+ "port": "9092",
2448
+ "checkInterval": "60",
2449
+ "x": 400,
2450
+ "y": 60,
2451
+ "wires": [
2452
+ [
2453
+ "be654225.78ec5"
2454
+ ],
2455
+ [
2456
+ "16439017.33e21"
2457
+ ]
2458
+ ]
2459
+ },
2460
+ {
2461
+ "id": "a303ce7d.b0c31",
2462
+ "type": "Host Available",
2463
+ "z": "955f4808.fd1898",
2464
+ "name": "",
2465
+ "host": "localhost",
2466
+ "port": "1880",
2467
+ "checkInterval": "",
2468
+ "x": 380,
2469
+ "y": 140,
2470
+ "wires": [
2471
+ [
2472
+ "be654225.78ec5"
2473
+ ],
2474
+ [
2475
+ "16439017.33e21"
2476
+ ]
2477
+ ]
2478
+ },
2479
+ {
2480
+ "id": "be654225.78ec5",
2481
+ "type": "debug",
2482
+ "z": "955f4808.fd1898",
2483
+ "name": "host ok",
2484
+ "active": true,
2485
+ "tosidebar": true,
2486
+ "console": false,
2487
+ "tostatus": false,
2488
+ "complete": "payload",
2489
+ "targetType": "msg",
2490
+ "x": 620,
2491
+ "y": 60,
2492
+ "wires": []
2493
+ },
2494
+ {
2495
+ "id": "16439017.33e21",
2496
+ "type": "debug",
2497
+ "z": "955f4808.fd1898",
2498
+ "name": "host down",
2499
+ "active": true,
2500
+ "tosidebar": true,
2501
+ "console": false,
2502
+ "tostatus": false,
2503
+ "complete": "payload",
2504
+ "targetType": "msg",
2505
+ "x": 630,
2506
+ "y": 140,
2507
+ "wires": []
2508
+ },
2509
+ {
2510
+ "id": "3e04758.89a298a",
2511
+ "type": "inject",
2512
+ "z": "955f4808.fd1898",
2513
+ "name": "",
2514
+ "repeat": "",
2515
+ "crontab": "",
2516
+ "once": false,
2517
+ "onceDelay": 0.1,
2518
+ "topic": "",
2519
+ "payload": "",
2520
+ "payloadType": "date",
2521
+ "x": 100,
2522
+ "y": 140,
2523
+ "wires": [
2524
+ [
2525
+ "a303ce7d.b0c31",
2526
+ "ffd72c7.5d152d"
2527
+ ]
2528
+ ]
2529
+ },
2530
+ {
2531
+ "id": "62f6a2ef.48084c",
2532
+ "type": "inject",
2533
+ "z": "955f4808.fd1898",
2534
+ "name": "refreshHostAvailable",
2535
+ "repeat": "",
2536
+ "crontab": "",
2537
+ "once": false,
2538
+ "onceDelay": 0.1,
2539
+ "topic": "refreshHostAvailable",
2540
+ "payload": "",
2541
+ "payloadType": "date",
2542
+ "x": 130,
2543
+ "y": 60,
2544
+ "wires": [
2545
+ [
2546
+ "a303ce7d.b0c31",
2547
+ "ffd72c7.5d152d"
2548
+ ]
2549
+ ]
2550
+ },
2551
+ {
2552
+ "id": "f8d6f002dbf1a0ec",
2553
+ "type": "Load Injector",
2554
+ "z": "1be03be45284f9d4",
2555
+ "name": "gen id + json",
2556
+ "thinktimemin": 1000,
2557
+ "thinktimemax": 10000,
2558
+ "runtime": 60,
2559
+ "payload": "[\"aaa\"]",
2560
+ "payloadType": "json",
2561
+ "topic": "",
2562
+ "topicType": "genid",
2563
+ "x": 130,
2564
+ "y": 140,
2565
+ "wires": [
2566
+ [
2567
+ "06a65ce9414ae1a8"
2568
+ ],
2569
+ [
2570
+ "d75971a334c97a1d"
2571
+ ]
2572
+ ]
2573
+ },
2574
+ {
2575
+ "id": "d75971a334c97a1d",
2576
+ "type": "debug",
2577
+ "z": "1be03be45284f9d4",
2578
+ "name": "",
2579
+ "active": true,
2580
+ "tosidebar": true,
2581
+ "console": false,
2582
+ "tostatus": false,
2583
+ "complete": "true",
2584
+ "targetType": "full",
2585
+ "statusVal": "",
2586
+ "statusType": "auto",
2587
+ "x": 570,
2588
+ "y": 280,
2589
+ "wires": []
2590
+ },
2591
+ {
2592
+ "id": "06a65ce9414ae1a8",
2593
+ "type": "Monitor Flow",
2594
+ "z": "1be03be45284f9d4",
2595
+ "name": "",
2596
+ "x": 470,
2597
+ "y": 120,
2598
+ "wires": [
2599
+ [
2600
+ "d75971a334c97a1d"
2601
+ ]
2602
+ ]
2603
+ },
2604
+ {
2605
+ "id": "ce87d1616e851eb3",
2606
+ "type": "Load Injector",
2607
+ "z": "1be03be45284f9d4",
2608
+ "name": "timestamp+string",
2609
+ "thinktimemin": 1000,
2610
+ "thinktimemax": 10000,
2611
+ "runtime": 60,
2612
+ "payload": "abc",
2613
+ "payloadType": "str",
2614
+ "topic": "",
2615
+ "topicType": "date",
2616
+ "x": 150,
2617
+ "y": 80,
2618
+ "wires": [
2619
+ [
2620
+ "06a65ce9414ae1a8"
2621
+ ],
2622
+ [
2623
+ "d75971a334c97a1d"
2624
+ ]
2625
+ ]
2626
+ },
2627
+ {
2628
+ "id": "f92c48ed91e841ca",
2629
+ "type": "Load Injector",
2630
+ "z": "1be03be45284f9d4",
2631
+ "name": "number+boolean",
2632
+ "thinktimemin": 1000,
2633
+ "thinktimemax": 10000,
2634
+ "runtime": 60,
2635
+ "payload": "true",
2636
+ "payloadType": "bool",
2637
+ "topic": "123",
2638
+ "topicType": "num",
2639
+ "x": 130,
2640
+ "y": 200,
2641
+ "wires": [
2642
+ [
2643
+ "06a65ce9414ae1a8"
2644
+ ],
2645
+ [
2646
+ "d75971a334c97a1d"
2647
+ ]
2648
+ ]
2649
+ },
2650
+ {
2651
+ "id": "273e66a15fcb86aa",
2652
+ "type": "Load Injector",
2653
+ "z": "1be03be45284f9d4",
2654
+ "name": "jsondata+buffer",
2655
+ "thinktimemin": 1000,
2656
+ "thinktimemax": 10000,
2657
+ "runtime": 60,
2658
+ "payload": "[97,116,101,115,116]",
2659
+ "payloadType": "str",
2660
+ "topic": "$random()\t",
2661
+ "topicType": "str",
2662
+ "x": 120,
2663
+ "y": 280,
2664
+ "wires": [
2665
+ [
2666
+ "06a65ce9414ae1a8"
2667
+ ],
2668
+ [
2669
+ "d75971a334c97a1d"
2670
+ ]
2671
+ ]
2672
+ },
2673
+ {
2674
+ "id": "6282e45766a9ca96",
2675
+ "type": "Load Injector",
2676
+ "z": "1be03be45284f9d4",
2677
+ "name": "",
2678
+ "thinktimemin": 1000,
2679
+ "thinktimemax": 10000,
2680
+ "runtime": 60,
2681
+ "payload": "{\"users\":[ {{#repeat 2}}{\"id\": {{@index}}, \"name\": \"{{firstName}} {{lastName}}\", \"work\": \"{{company}}\", \"email\": \"{{email}}\", \"dob\": \"{{date '1900' '2000' 'YYYY'}}\", \"address\": \"{{int 1 100}} {{street}}\", \"city\": \"{{city}}\", \"optedin\": {{boolean}} } {{/repeat}} ], \"images\": [{{#repeat 3}} \"img{{@index}}.png\" {{/repeat}}], \"coordinates\": { \"x\": {{float -50 50 '0.00'}}, \"y\": {{float -25 25 '0.00'}} }, \"price\": \"${{int 0 99999 '0,0'}}\"}",
2682
+ "payloadType": "genDataJSON",
2683
+ "topic": "{{#repeat 3 comma=false}}hello1{{/repeat}} ",
2684
+ "topicType": "genData",
2685
+ "x": 110,
2686
+ "y": 380,
2687
+ "wires": [
2688
+ [
2689
+ "d75971a334c97a1d"
2690
+ ],
2691
+ []
2692
+ ]
2693
+ },
2694
+ {
2695
+ "id": "91c9037a75567e24",
2696
+ "type": "transform",
2697
+ "z": "5866424ac23291eb",
2698
+ "name": "",
2699
+ "actionSource": "JSON",
2700
+ "actionTarget": "Array",
2701
+ "sourceProperty": "msg.payload",
2702
+ "targetProperty": "msg.payload",
2703
+ "topicProperty": "msg.topic",
2704
+ "maxMessages": "10",
2705
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
2706
+ "schemaType": "json",
2707
+ "skipLeading": 0,
2708
+ "skipTrailing": 0,
2709
+ "delimiter": ",",
2710
+ "compressionType": "setGzip",
2711
+ "x": 400,
2712
+ "y": 20,
2713
+ "wires": [
2714
+ [
2715
+ "93c7047f87bbf964"
2716
+ ],
2717
+ []
2718
+ ]
2719
+ },
2720
+ {
2721
+ "id": "b1b8cccd0ff0026a",
2722
+ "type": "inject",
2723
+ "z": "5866424ac23291eb",
2724
+ "name": "json 0",
2725
+ "props": [
2726
+ {
2727
+ "p": "payload"
2728
+ },
2729
+ {
2730
+ "p": "topic",
2731
+ "vt": "str"
2732
+ }
2733
+ ],
2734
+ "repeat": "",
2735
+ "crontab": "",
2736
+ "once": false,
2737
+ "onceDelay": 0.1,
2738
+ "topic": "json 0",
2739
+ "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
2740
+ "payloadType": "json",
2741
+ "x": 70,
2742
+ "y": 80,
2743
+ "wires": [
2744
+ [
2745
+ "91c9037a75567e24"
2746
+ ]
2747
+ ]
2748
+ },
2749
+ {
2750
+ "id": "93c7047f87bbf964",
2751
+ "type": "debug",
2752
+ "z": "5866424ac23291eb",
2753
+ "name": "json",
2754
+ "active": true,
2755
+ "tosidebar": true,
2756
+ "console": false,
2757
+ "tostatus": false,
2758
+ "complete": "true",
2759
+ "targetType": "full",
2760
+ "statusVal": "",
2761
+ "statusType": "auto",
2762
+ "x": 650,
2763
+ "y": 140,
2764
+ "wires": []
2765
+ },
2766
+ {
2767
+ "id": "9c00ca32910aa65b",
2768
+ "type": "inject",
2769
+ "z": "5866424ac23291eb",
2770
+ "name": "json 1",
2771
+ "props": [
2772
+ {
2773
+ "p": "payload"
2774
+ },
2775
+ {
2776
+ "p": "topic",
2777
+ "vt": "str"
2778
+ }
2779
+ ],
2780
+ "repeat": "",
2781
+ "crontab": "",
2782
+ "once": false,
2783
+ "onceDelay": 0.1,
2784
+ "topic": "json 1",
2785
+ "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
2786
+ "payloadType": "json",
2787
+ "x": 70,
2788
+ "y": 140,
2789
+ "wires": [
2790
+ [
2791
+ "de625a76baddbeab"
2792
+ ]
2793
+ ]
2794
+ },
2795
+ {
2796
+ "id": "de625a76baddbeab",
2797
+ "type": "transform",
2798
+ "z": "5866424ac23291eb",
2799
+ "name": "",
2800
+ "actionSource": "JSON",
2801
+ "actionTarget": "CSV",
2802
+ "sourceProperty": "msg.payload",
2803
+ "targetProperty": "msg.payload",
2804
+ "topicProperty": "msg.topic",
2805
+ "maxMessages": 1000,
2806
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
2807
+ "schemaType": "json",
2808
+ "skipLeading": 0,
2809
+ "skipTrailing": 0,
2810
+ "delimiter": ",",
2811
+ "compressionType": "setGzip",
2812
+ "x": 390,
2813
+ "y": 140,
2814
+ "wires": [
2815
+ [
2816
+ "93c7047f87bbf964"
2817
+ ],
2818
+ []
2819
+ ]
2820
+ },
2821
+ {
2822
+ "id": "bb90849ccf68f393",
2823
+ "type": "inject",
2824
+ "z": "5866424ac23291eb",
2825
+ "name": "",
2826
+ "props": [
2827
+ {
2828
+ "p": "payload"
2829
+ },
2830
+ {
2831
+ "p": "topic",
2832
+ "vt": "str"
2833
+ }
2834
+ ],
2835
+ "repeat": "",
2836
+ "crontab": "",
2837
+ "once": false,
2838
+ "onceDelay": 0.1,
2839
+ "topic": "[[1,2],[3,4]]",
2840
+ "payload": "[[1,2],[3,4]]",
2841
+ "payloadType": "json",
2842
+ "x": 120,
2843
+ "y": 20,
2844
+ "wires": [
2845
+ [
2846
+ "91c9037a75567e24",
2847
+ "911d448d61a99628"
2848
+ ]
2849
+ ]
2850
+ },
2851
+ {
2852
+ "id": "27cd97468b385aa4",
2853
+ "type": "inject",
2854
+ "z": "5866424ac23291eb",
2855
+ "name": "",
2856
+ "props": [
2857
+ {
2858
+ "p": "payload"
2859
+ },
2860
+ {
2861
+ "p": "topic",
2862
+ "vt": "str"
2863
+ }
2864
+ ],
2865
+ "repeat": "",
2866
+ "crontab": "",
2867
+ "once": false,
2868
+ "onceDelay": 0.1,
2869
+ "topic": "[[1,2],[2,3]]",
2870
+ "payload": "[[1,2],[2,3]]",
2871
+ "payloadType": "json",
2872
+ "x": 120,
2873
+ "y": 200,
2874
+ "wires": [
2875
+ [
2876
+ "de625a76baddbeab",
2877
+ "911d448d61a99628"
2878
+ ]
2879
+ ]
2880
+ },
2881
+ {
2882
+ "id": "04806c30ac0f2050",
2883
+ "type": "inject",
2884
+ "z": "5866424ac23291eb",
2885
+ "name": "[{\"item\":\"1\",\"item-2\":\"2\"},...",
2886
+ "props": [
2887
+ {
2888
+ "p": "payload"
2889
+ },
2890
+ {
2891
+ "p": "topic",
2892
+ "v": "topic",
2893
+ "vt": "msg"
2894
+ }
2895
+ ],
2896
+ "repeat": "",
2897
+ "crontab": "",
2898
+ "once": false,
2899
+ "onceDelay": 0.1,
2900
+ "topic": "",
2901
+ "payload": "[{\"item\":\"1\",\"item-2\":\"2\"},{\"item\":\"3\",\"item-1\":\"4\"},\"test\",[1,2,3]]",
2902
+ "payloadType": "json",
2903
+ "x": 130,
2904
+ "y": 260,
2905
+ "wires": [
2906
+ [
2907
+ "de625a76baddbeab"
2908
+ ]
2909
+ ]
2910
+ },
2911
+ {
2912
+ "id": "911d448d61a99628",
2913
+ "type": "transform",
2914
+ "z": "5866424ac23291eb",
2915
+ "name": "",
2916
+ "actionSource": "Array",
2917
+ "actionTarget": "HTML",
2918
+ "sourceProperty": "msg.payload",
2919
+ "targetProperty": "msg.payload",
2920
+ "topicProperty": "msg.topic",
2921
+ "maxMessages": 1000,
2922
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
2923
+ "schemaType": "json",
2924
+ "skipLeading": 0,
2925
+ "skipTrailing": 0,
2926
+ "delimiter": ",",
2927
+ "compressionType": "setGzip",
2928
+ "x": 460,
2929
+ "y": 300,
2930
+ "wires": [
2931
+ [
2932
+ "c768833a7c496c36"
2933
+ ],
2934
+ []
2935
+ ]
2936
+ },
2937
+ {
2938
+ "id": "c768833a7c496c36",
2939
+ "type": "debug",
2940
+ "z": "5866424ac23291eb",
2941
+ "name": "array to html",
2942
+ "active": true,
2943
+ "tosidebar": true,
2944
+ "console": false,
2945
+ "tostatus": false,
2946
+ "complete": "true",
2947
+ "targetType": "full",
2948
+ "statusVal": "",
2949
+ "statusType": "auto",
2950
+ "x": 690,
2951
+ "y": 300,
2952
+ "wires": []
2953
+ },
2954
+ {
2955
+ "id": "2a9b4180.1b8ffe",
2956
+ "type": "inject",
2957
+ "z": "924bb2b7.03fd1",
2958
+ "name": "json xcel worksheets",
2959
+ "props": [
2960
+ {
2961
+ "p": "payload"
2962
+ },
2963
+ {
2964
+ "p": "topic",
2965
+ "vt": "str"
2966
+ }
2967
+ ],
2968
+ "repeat": "",
2969
+ "crontab": "",
2970
+ "once": false,
2971
+ "onceDelay": 0.1,
2972
+ "topic": "",
2973
+ "payload": "{\"worksheet1\":[[11,12],[21,22],[31,32]],\"worksheet2\":[[11,12],[21,22]]}",
2974
+ "payloadType": "json",
2975
+ "x": 110,
2976
+ "y": 60,
2977
+ "wires": [
2978
+ [
2979
+ "b99caf39.d57c9"
2980
+ ]
2981
+ ]
2982
+ },
2983
+ {
2984
+ "id": "b99caf39.d57c9",
2985
+ "type": "transform",
2986
+ "z": "924bb2b7.03fd1",
2987
+ "name": "",
2988
+ "actionSource": "Array",
2989
+ "actionTarget": "XLSX",
2990
+ "sourceProperty": "msg.payload",
2991
+ "targetProperty": "msg.xlsx",
2992
+ "topicProperty": "msg.topic",
2993
+ "maxMessages": 1000,
2994
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
2995
+ "schemaType": "json",
2996
+ "skipLeading": 0,
2997
+ "skipTrailing": 0,
2998
+ "delimiter": ",",
2999
+ "x": 380,
3000
+ "y": 60,
3001
+ "wires": [
3002
+ [
3003
+ "e234842f.2946a8",
3004
+ "7bde11d2.378e6"
3005
+ ],
3006
+ [
3007
+ "3db2b919.ea68d6"
3008
+ ]
3009
+ ]
3010
+ },
3011
+ {
3012
+ "id": "7bde11d2.378e6",
3013
+ "type": "transform",
3014
+ "z": "924bb2b7.03fd1",
3015
+ "name": "",
3016
+ "actionSource": "Array",
3017
+ "actionTarget": "XLSXObject",
3018
+ "sourceProperty": "msg.payload",
3019
+ "targetProperty": "msg.xlsxobject",
3020
+ "topicProperty": "msg.topic",
3021
+ "maxMessages": 1000,
3022
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3023
+ "schemaType": "json",
3024
+ "skipLeading": 0,
3025
+ "skipTrailing": 0,
3026
+ "delimiter": ",",
3027
+ "x": 360,
3028
+ "y": 120,
3029
+ "wires": [
3030
+ [
3031
+ "8e6f5298.ccab4"
3032
+ ],
3033
+ [
3034
+ "3db2b919.ea68d6"
3035
+ ]
3036
+ ]
3037
+ },
3038
+ {
3039
+ "id": "8e6f5298.ccab4",
3040
+ "type": "transform",
3041
+ "z": "924bb2b7.03fd1",
3042
+ "name": "",
3043
+ "actionSource": "XLSX",
3044
+ "actionTarget": "Array",
3045
+ "sourceProperty": "msg.xlsx",
3046
+ "targetProperty": "msg.array",
3047
+ "topicProperty": "msg.topic",
3048
+ "maxMessages": 1000,
3049
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3050
+ "schemaType": "json",
3051
+ "skipLeading": 0,
3052
+ "skipTrailing": 0,
3053
+ "delimiter": ",",
3054
+ "x": 380,
3055
+ "y": 180,
3056
+ "wires": [
3057
+ [
3058
+ "3db2b919.ea68d6"
3059
+ ],
3060
+ [
3061
+ "3db2b919.ea68d6"
3062
+ ]
3063
+ ]
3064
+ },
3065
+ {
3066
+ "id": "e234842f.2946a8",
3067
+ "type": "transform",
3068
+ "z": "924bb2b7.03fd1",
3069
+ "name": "",
3070
+ "actionSource": "XLSX",
3071
+ "actionTarget": "XLSXObject",
3072
+ "sourceProperty": "msg.xlsx",
3073
+ "targetProperty": "msg.xlsx2xlsxObject",
3074
+ "topicProperty": "msg.topic",
3075
+ "maxMessages": 1000,
3076
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3077
+ "schemaType": "json",
3078
+ "skipLeading": 0,
3079
+ "skipTrailing": 0,
3080
+ "delimiter": ",",
3081
+ "x": 660,
3082
+ "y": 60,
3083
+ "wires": [
3084
+ [
3085
+ "5312687f.3fff48"
3086
+ ],
3087
+ []
3088
+ ]
3089
+ },
3090
+ {
3091
+ "id": "5312687f.3fff48",
3092
+ "type": "debug",
3093
+ "z": "924bb2b7.03fd1",
3094
+ "name": "base",
3095
+ "active": true,
3096
+ "tosidebar": true,
3097
+ "console": false,
3098
+ "tostatus": false,
3099
+ "complete": "true",
3100
+ "targetType": "full",
3101
+ "statusVal": "",
3102
+ "statusType": "auto",
3103
+ "x": 870,
3104
+ "y": 60,
3105
+ "wires": []
3106
+ },
3107
+ {
3108
+ "id": "3db2b919.ea68d6",
3109
+ "type": "debug",
3110
+ "z": "924bb2b7.03fd1",
3111
+ "name": "",
3112
+ "active": true,
3113
+ "tosidebar": true,
3114
+ "console": false,
3115
+ "tostatus": false,
3116
+ "complete": "true",
3117
+ "targetType": "full",
3118
+ "statusVal": "",
3119
+ "statusType": "auto",
3120
+ "x": 870,
3121
+ "y": 160,
3122
+ "wires": []
3123
+ },
3124
+ {
3125
+ "id": "1453db4ab0597503",
3126
+ "type": "inject",
3127
+ "z": "65b5beda2b73b7b5",
3128
+ "name": "",
3129
+ "props": [
3130
+ {
3131
+ "p": "payload"
3132
+ },
3133
+ {
3134
+ "p": "topic",
3135
+ "vt": "str"
3136
+ }
3137
+ ],
3138
+ "repeat": "",
3139
+ "crontab": "",
3140
+ "once": false,
3141
+ "onceDelay": 0.1,
3142
+ "topic": "",
3143
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3144
+ "payloadType": "bin",
3145
+ "x": 110,
3146
+ "y": 100,
3147
+ "wires": [
3148
+ [
3149
+ "ee2d5b0149699bfd"
3150
+ ]
3151
+ ]
3152
+ },
3153
+ {
3154
+ "id": "ee2d5b0149699bfd",
3155
+ "type": "transform",
3156
+ "z": "65b5beda2b73b7b5",
3157
+ "name": "",
3158
+ "actionSource": "Buffer",
3159
+ "actionTarget": "Compressed",
3160
+ "sourceProperty": "msg.payload",
3161
+ "targetProperty": "msg.payload",
3162
+ "topicProperty": "msg.topic",
3163
+ "maxMessages": 1000,
3164
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3165
+ "schemaType": "json",
3166
+ "skipLeading": 0,
3167
+ "skipTrailing": 0,
3168
+ "delimiter": ",",
3169
+ "compressionType": "setGzip",
3170
+ "x": 340,
3171
+ "y": 100,
3172
+ "wires": [
3173
+ [
3174
+ "aba26b9c6499adb1",
3175
+ "8137c393bddb08a1"
3176
+ ],
3177
+ [
3178
+ "10a0adbf5535121a"
3179
+ ]
3180
+ ]
3181
+ },
3182
+ {
3183
+ "id": "8137c393bddb08a1",
3184
+ "type": "debug",
3185
+ "z": "65b5beda2b73b7b5",
3186
+ "name": "debug",
3187
+ "active": true,
3188
+ "tosidebar": true,
3189
+ "console": false,
3190
+ "tostatus": false,
3191
+ "complete": "payload",
3192
+ "targetType": "msg",
3193
+ "statusVal": "",
3194
+ "statusType": "auto",
3195
+ "x": 670,
3196
+ "y": 100,
3197
+ "wires": []
3198
+ },
3199
+ {
3200
+ "id": "10a0adbf5535121a",
3201
+ "type": "debug",
3202
+ "z": "65b5beda2b73b7b5",
3203
+ "name": "error",
3204
+ "active": true,
3205
+ "tosidebar": true,
3206
+ "console": false,
3207
+ "tostatus": false,
3208
+ "complete": "true",
3209
+ "targetType": "full",
3210
+ "statusVal": "",
3211
+ "statusType": "auto",
3212
+ "x": 690,
3213
+ "y": 220,
3214
+ "wires": []
3215
+ },
3216
+ {
3217
+ "id": "aba26b9c6499adb1",
3218
+ "type": "transform",
3219
+ "z": "65b5beda2b73b7b5",
3220
+ "name": "",
3221
+ "actionSource": "Compressed",
3222
+ "actionTarget": "Buffer",
3223
+ "sourceProperty": "msg.payload",
3224
+ "targetProperty": "msg.payload",
3225
+ "topicProperty": "msg.topic",
3226
+ "maxMessages": 1000,
3227
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3228
+ "schemaType": "json",
3229
+ "skipLeading": 0,
3230
+ "skipTrailing": 0,
3231
+ "delimiter": ",",
3232
+ "compressionType": "setGzip",
3233
+ "x": 360,
3234
+ "y": 180,
3235
+ "wires": [
3236
+ [
3237
+ "8137c393bddb08a1",
3238
+ "d38095883a4a54ac"
3239
+ ],
3240
+ []
3241
+ ]
3242
+ },
3243
+ {
3244
+ "id": "d38095883a4a54ac",
3245
+ "type": "test",
3246
+ "z": "65b5beda2b73b7b5",
3247
+ "name": "test gzip",
3248
+ "errorFactor": 0,
3249
+ "escapeString": false,
3250
+ "infiniteIsNull": false,
3251
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3252
+ "payloadType": "bin",
3253
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3254
+ "resultType": "bin",
3255
+ "resultProperty": "msg.payload",
3256
+ "topic": "test gzip",
3257
+ "x": 120,
3258
+ "y": 260,
3259
+ "wires": [
3260
+ [
3261
+ "ee2d5b0149699bfd"
3262
+ ],
3263
+ [
3264
+ "10a0adbf5535121a"
3265
+ ],
3266
+ [
3267
+ "95a62d934bb57fcd"
3268
+ ]
3269
+ ]
3270
+ },
3271
+ {
3272
+ "id": "50672d0a987880df",
3273
+ "type": "transform",
3274
+ "z": "65b5beda2b73b7b5",
3275
+ "name": "",
3276
+ "actionSource": "Buffer",
3277
+ "actionTarget": "Compressed",
3278
+ "sourceProperty": "msg.payload",
3279
+ "targetProperty": "msg.payload",
3280
+ "topicProperty": "msg.topic",
3281
+ "maxMessages": 1000,
3282
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3283
+ "schemaType": "json",
3284
+ "skipLeading": 0,
3285
+ "skipTrailing": 0,
3286
+ "delimiter": ",",
3287
+ "compressionType": "setGzipSpeed",
3288
+ "x": 360,
3289
+ "y": 340,
3290
+ "wires": [
3291
+ [
3292
+ "7a65c34df4ae2ce4"
3293
+ ],
3294
+ [
3295
+ "10a0adbf5535121a"
3296
+ ]
3297
+ ]
3298
+ },
3299
+ {
3300
+ "id": "7a65c34df4ae2ce4",
3301
+ "type": "transform",
3302
+ "z": "65b5beda2b73b7b5",
3303
+ "name": "",
3304
+ "actionSource": "Compressed",
3305
+ "actionTarget": "Buffer",
3306
+ "sourceProperty": "msg.payload",
3307
+ "targetProperty": "msg.payload",
3308
+ "topicProperty": "msg.topic",
3309
+ "maxMessages": 1000,
3310
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3311
+ "schemaType": "json",
3312
+ "skipLeading": 0,
3313
+ "skipTrailing": 0,
3314
+ "delimiter": ",",
3315
+ "compressionType": "setGzip",
3316
+ "x": 380,
3317
+ "y": 420,
3318
+ "wires": [
3319
+ [
3320
+ "95a62d934bb57fcd"
3321
+ ],
3322
+ [
3323
+ "10a0adbf5535121a"
3324
+ ]
3325
+ ]
3326
+ },
3327
+ {
3328
+ "id": "95a62d934bb57fcd",
3329
+ "type": "test",
3330
+ "z": "65b5beda2b73b7b5",
3331
+ "name": "test gzip speed",
3332
+ "errorFactor": 0,
3333
+ "escapeString": false,
3334
+ "infiniteIsNull": false,
3335
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3336
+ "payloadType": "bin",
3337
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3338
+ "resultType": "bin",
3339
+ "resultProperty": "msg.payload",
3340
+ "topic": "test gzip speed",
3341
+ "x": 120,
3342
+ "y": 480,
3343
+ "wires": [
3344
+ [
3345
+ "50672d0a987880df"
3346
+ ],
3347
+ [
3348
+ "10a0adbf5535121a"
3349
+ ],
3350
+ [
3351
+ "065ac327fbf17d38"
3352
+ ]
3353
+ ]
3354
+ },
3355
+ {
3356
+ "id": "44b0be1b07c2ccc2",
3357
+ "type": "transform",
3358
+ "z": "65b5beda2b73b7b5",
3359
+ "name": "",
3360
+ "actionSource": "Buffer",
3361
+ "actionTarget": "Compressed",
3362
+ "sourceProperty": "msg.payload",
3363
+ "targetProperty": "msg.payload",
3364
+ "topicProperty": "msg.topic",
3365
+ "maxMessages": 1000,
3366
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3367
+ "schemaType": "json",
3368
+ "skipLeading": 0,
3369
+ "skipTrailing": 0,
3370
+ "delimiter": ",",
3371
+ "compressionType": "setGzipCompression",
3372
+ "x": 400,
3373
+ "y": 540,
3374
+ "wires": [
3375
+ [
3376
+ "1a31abc23d7473a0"
3377
+ ],
3378
+ []
3379
+ ]
3380
+ },
3381
+ {
3382
+ "id": "1a31abc23d7473a0",
3383
+ "type": "transform",
3384
+ "z": "65b5beda2b73b7b5",
3385
+ "name": "",
3386
+ "actionSource": "Compressed",
3387
+ "actionTarget": "Buffer",
3388
+ "sourceProperty": "msg.payload",
3389
+ "targetProperty": "msg.payload",
3390
+ "topicProperty": "msg.topic",
3391
+ "maxMessages": 1000,
3392
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3393
+ "schemaType": "json",
3394
+ "skipLeading": 0,
3395
+ "skipTrailing": 0,
3396
+ "delimiter": ",",
3397
+ "compressionType": "setGzip",
3398
+ "x": 420,
3399
+ "y": 620,
3400
+ "wires": [
3401
+ [
3402
+ "065ac327fbf17d38"
3403
+ ],
3404
+ []
3405
+ ]
3406
+ },
3407
+ {
3408
+ "id": "065ac327fbf17d38",
3409
+ "type": "test",
3410
+ "z": "65b5beda2b73b7b5",
3411
+ "name": "test gzip compress",
3412
+ "errorFactor": 0,
3413
+ "escapeString": false,
3414
+ "infiniteIsNull": false,
3415
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3416
+ "payloadType": "bin",
3417
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3418
+ "resultType": "bin",
3419
+ "resultProperty": "msg.payload",
3420
+ "topic": "test gzip compress",
3421
+ "x": 170,
3422
+ "y": 680,
3423
+ "wires": [
3424
+ [
3425
+ "44b0be1b07c2ccc2"
3426
+ ],
3427
+ [
3428
+ "10a0adbf5535121a"
3429
+ ],
3430
+ []
3431
+ ]
3432
+ }
3433
+ ]