forked from netdata/netdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
5187 lines (4387 loc) · 187 KB
/
main.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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Main JavaScript file for the Netdata GUI.
// Codacy declarations
/* global NETDATA */
// netdata snapshot data
var netdataSnapshotData = null;
// enable alarms checking and notifications
var netdataShowAlarms = true;
// enable registry updates
var netdataRegistry = true;
// forward definition only - not used here
var netdataServer = undefined;
var netdataServerStatic = undefined;
var netdataCheckXSS = undefined;
// control the welcome modal and analytics
var this_is_demo = null;
function escapeUserInputHTML(s) {
return s.toString()
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/#/g, '#')
.replace(/'/g, ''')
.replace(/\(/g, '(')
.replace(/\)/g, ')')
.replace(/\//g, '/');
}
function verifyURL(s) {
if (typeof (s) === 'string' && (s.startsWith('http://') || s.startsWith('https://'))) {
return s
.replace(/'/g, '%22')
.replace(/"/g, '%27')
.replace(/\)/g, '%28')
.replace(/\(/g, '%29');
}
console.log('invalid URL detected:');
console.log(s);
return 'javascript:alert("invalid url");';
}
// --------------------------------------------------------------------
// urlOptions
var urlOptions = {
hash: '#',
theme: null,
help: null,
mode: 'live', // 'live', 'print'
update_always: false,
pan_and_zoom: false,
server: null,
after: 0,
before: 0,
highlight: false,
highlight_after: 0,
highlight_before: 0,
nowelcome: false,
show_alarms: false,
chart: null,
family: null,
alarm: null,
alarm_unique_id: 0,
alarm_id: 0,
alarm_event_id: 0,
alarm_when: 0,
hasProperty: function (property) {
// console.log('checking property ' + property + ' of type ' + typeof(this[property]));
return typeof this[property] !== 'undefined';
},
genHash: function (forReload) {
var hash = urlOptions.hash;
if (urlOptions.pan_and_zoom === true) {
hash += ';after=' + urlOptions.after.toString() +
';before=' + urlOptions.before.toString();
}
if (urlOptions.highlight === true) {
hash += ';highlight_after=' + urlOptions.highlight_after.toString() +
';highlight_before=' + urlOptions.highlight_before.toString();
}
if (urlOptions.theme !== null) {
hash += ';theme=' + urlOptions.theme.toString();
}
if (urlOptions.help !== null) {
hash += ';help=' + urlOptions.help.toString();
}
if (urlOptions.update_always === true) {
hash += ';update_always=true';
}
if (forReload === true && urlOptions.server !== null) {
hash += ';server=' + urlOptions.server.toString();
}
if (urlOptions.mode !== 'live') {
hash += ';mode=' + urlOptions.mode;
}
return hash;
},
parseHash: function () {
var variables = document.location.hash.split(';');
var len = variables.length;
while (len--) {
if (len !== 0) {
var p = variables[len].split('=');
if (urlOptions.hasProperty(p[0]) && typeof p[1] !== 'undefined') {
urlOptions[p[0]] = decodeURIComponent(p[1]);
}
} else {
if (variables[len].length > 0) {
urlOptions.hash = variables[len];
}
}
}
var booleans = ['nowelcome', 'show_alarms', 'update_always'];
len = booleans.length;
while (len--) {
if (urlOptions[booleans[len]] === 'true' || urlOptions[booleans[len]] === true || urlOptions[booleans[len]] === '1' || urlOptions[booleans[len]] === 1) {
urlOptions[booleans[len]] = true;
} else {
urlOptions[booleans[len]] = false;
}
}
var numeric = ['after', 'before', 'highlight_after', 'highlight_before', 'alarm_when'];
len = numeric.length;
while (len--) {
if (typeof urlOptions[numeric[len]] === 'string') {
try {
urlOptions[numeric[len]] = parseInt(urlOptions[numeric[len]]);
}
catch (e) {
console.log('failed to parse URL hash parameter ' + numeric[len]);
urlOptions[numeric[len]] = 0;
}
}
}
if (urlOptions.alarm_when) {
// if alarm_when exists, create after/before params
// -/+ 2 minutes from the alarm, and reload the page
const alarmTime = new Date(urlOptions.alarm_when * 1000).valueOf();
const timeMarginMs = 120000; // 2 mins
const after = alarmTime - timeMarginMs;
const before = alarmTime + timeMarginMs;
const newHash = document.location.hash.replace(
/;alarm_when=[0-9]*/i,
";after=" + after + ";before=" + before,
);
history.replaceState(null, '', newHash);
location.reload();
}
if (urlOptions.server !== null && urlOptions.server !== '') {
netdataServerStatic = document.location.origin.toString() + document.location.pathname.toString();
netdataServer = urlOptions.server;
netdataCheckXSS = true;
} else {
urlOptions.server = null;
}
if (urlOptions.before > 0 && urlOptions.after > 0) {
urlOptions.pan_and_zoom = true;
urlOptions.nowelcome = true;
} else {
urlOptions.pan_and_zoom = false;
}
if (urlOptions.highlight_before > 0 && urlOptions.highlight_after > 0) {
urlOptions.highlight = true;
} else {
urlOptions.highlight = false;
}
switch (urlOptions.mode) {
case 'print':
urlOptions.theme = 'white';
urlOptions.welcome = false;
urlOptions.help = false;
urlOptions.show_alarms = false;
if (urlOptions.pan_and_zoom === false) {
urlOptions.pan_and_zoom = true;
urlOptions.before = Date.now();
urlOptions.after = urlOptions.before - 600000;
}
netdataShowAlarms = false;
netdataRegistry = false;
this_is_demo = false;
break;
case 'live':
default:
urlOptions.mode = 'live';
break;
}
// console.log(urlOptions);
},
hashUpdate: function () {
history.replaceState(null, '', urlOptions.genHash(true));
},
netdataPanAndZoomCallback: function (status, after, before) {
//console.log(1);
//console.log(new Error().stack);
if (netdataSnapshotData === null) {
urlOptions.pan_and_zoom = status;
urlOptions.after = after;
urlOptions.before = before;
urlOptions.hashUpdate();
}
},
netdataHighlightCallback: function (status, after, before) {
//console.log(2);
//console.log(new Error().stack);
if (status === true && (after === null || before === null || after <= 0 || before <= 0 || after >= before)) {
status = false;
after = 0;
before = 0;
}
if (netdataSnapshotData === null) {
urlOptions.highlight = status;
} else {
urlOptions.highlight = false;
}
urlOptions.highlight_after = Math.round(after);
urlOptions.highlight_before = Math.round(before);
urlOptions.hashUpdate();
var show_eye = NETDATA.globalChartUnderlay.hasViewport();
if (status === true && after > 0 && before > 0 && after < before) {
var d1 = NETDATA.dateTime.localeDateString(after);
var d2 = NETDATA.dateTime.localeDateString(before);
if (d1 === d2) {
d2 = '';
}
document.getElementById('navbar-highlight-content').innerHTML =
((show_eye === true) ? '<span class="navbar-highlight-bar highlight-tooltip" onclick="urlOptions.showHighlight();" title="restore the highlighted view" data-toggle="tooltip" data-placement="bottom">' : '<span>').toString()
+ 'highlighted time-frame'
+ ' <b>' + d1 + ' <code>' + NETDATA.dateTime.localeTimeString(after) + '</code></b> to '
+ ' <b>' + d2 + ' <code>' + NETDATA.dateTime.localeTimeString(before) + '</code></b>, '
+ 'duration <b>' + NETDATA.seconds4human(Math.round((before - after) / 1000)) + '</b>'
+ '</span>'
+ '<span class="navbar-highlight-button-right highlight-tooltip" onclick="urlOptions.clearHighlight();" title="clear the highlighted time-frame" data-toggle="tooltip" data-placement="bottom"><i class="fas fa-times"></i></span>';
$('.navbar-highlight').show();
$('.highlight-tooltip').tooltip({
html: true,
delay: { show: 500, hide: 0 },
container: 'body'
});
} else {
$('.navbar-highlight').hide();
}
},
clearHighlight: function () {
NETDATA.globalChartUnderlay.clear();
if (NETDATA.globalPanAndZoom.isActive() === true) {
NETDATA.globalPanAndZoom.clearMaster();
}
},
showHighlight: function () {
NETDATA.globalChartUnderlay.focus();
}
};
urlOptions.parseHash();
// --------------------------------------------------------------------
// check options that should be processed before loading netdata.js
var localStorageTested = -1;
function localStorageTest() {
if (localStorageTested !== -1) {
return localStorageTested;
}
if (typeof Storage !== "undefined" && typeof localStorage === 'object') {
var test = 'test';
try {
localStorage.setItem(test, test);
localStorage.removeItem(test);
localStorageTested = true;
}
catch (e) {
console.log(e);
localStorageTested = false;
}
} else {
localStorageTested = false;
}
return localStorageTested;
}
function loadLocalStorage(name) {
var ret = null;
try {
if (localStorageTest() === true) {
ret = localStorage.getItem(name);
} else {
console.log('localStorage is not available');
}
}
catch (error) {
console.log(error);
return null;
}
if (typeof ret === 'undefined' || ret === null) {
return null;
}
// console.log('loaded: ' + name.toString() + ' = ' + ret.toString());
return ret;
}
function saveLocalStorage(name, value) {
// console.log('saving: ' + name.toString() + ' = ' + value.toString());
try {
if (localStorageTest() === true) {
localStorage.setItem(name, value.toString());
return true;
}
}
catch (error) {
console.log(error);
}
return false;
}
function getTheme(def) {
if (urlOptions.mode === 'print') {
return 'white';
}
var ret = loadLocalStorage('netdataTheme');
if (typeof ret === 'undefined' || ret === null || ret === 'undefined') {
return def;
} else {
return ret;
}
}
function setTheme(theme) {
if (urlOptions.mode === 'print') {
return false;
}
if (theme === netdataTheme) {
return false;
}
return saveLocalStorage('netdataTheme', theme);
}
var netdataTheme = getTheme('slate');
var netdataShowHelp = true;
if (urlOptions.theme !== null) {
setTheme(urlOptions.theme);
netdataTheme = urlOptions.theme;
} else {
urlOptions.theme = netdataTheme;
}
if (urlOptions.help !== null) {
saveLocalStorage('options.show_help', urlOptions.help);
netdataShowHelp = urlOptions.help;
} else {
urlOptions.help = loadLocalStorage('options.show_help');
}
// --------------------------------------------------------------------
// natural sorting
// http://www.davekoelle.com/files/alphanum.js - LGPL
function naturalSortChunkify(t) {
var tz = [];
var x = 0, y = -1, n = 0, i, j;
while (i = (j = t.charAt(x++)).charCodeAt(0)) {
var m = (i >= 48 && i <= 57);
if (m !== n) {
tz[++y] = "";
n = m;
}
tz[y] += j;
}
return tz;
}
function naturalSortCompare(a, b) {
var aa = naturalSortChunkify(a.toLowerCase());
var bb = naturalSortChunkify(b.toLowerCase());
for (var x = 0; aa[x] && bb[x]; x++) {
if (aa[x] !== bb[x]) {
var c = Number(aa[x]), d = Number(bb[x]);
if (c.toString() === aa[x] && d.toString() === bb[x]) {
return c - d;
} else {
return (aa[x] > bb[x]) ? 1 : -1;
}
}
}
return aa.length - bb.length;
}
// --------------------------------------------------------------------
// saving files to client
function saveTextToClient(data, filename) {
var blob = new Blob([data], {
type: 'application/octet-stream'
});
var url = URL.createObjectURL(blob);
var link = document.createElement('a');
link.setAttribute('href', url);
link.setAttribute('download', filename);
var el = document.getElementById('hiddenDownloadLinks');
el.innerHTML = '';
el.appendChild(link);
setTimeout(function () {
el.removeChild(link);
URL.revokeObjectURL(url);
}, 60);
link.click();
}
function saveObjectToClient(data, filename) {
saveTextToClient(JSON.stringify(data), filename);
}
// -----------------------------------------------------------------------------
// registry call back to render my-netdata menu
function toggleExpandIcon(svgEl) {
if (svgEl.getAttribute('data-icon') === 'caret-down') {
svgEl.setAttribute('data-icon', 'caret-up');
} else {
svgEl.setAttribute('data-icon', 'caret-down');
}
}
function toggleAgentItem(e, guid) {
e.stopPropagation();
e.preventDefault();
toggleExpandIcon(e.currentTarget.children[0]);
const el = document.querySelector(`.agent-alternate-urls.agent-${guid}`);
if (el) {
el.classList.toggle('collapsed');
}
}
// When you stream metrics from netdata to netdata, the recieving netdata now
// has multiple host databases. It's own, and multiple mirrored. Mirrored databases
// can be accessed with <http://localhost:19999/host/NAME/>
function renderStreamedHosts(options) {
let html = `<div class="info-item">Databases streamed to this agent</div>`;
var base = document.location.origin.toString() + document.location.pathname.toString();
if (base.endsWith("/host/" + options.hostname + "/")) {
base = base.substring(0, base.length - ("/host/" + options.hostname + "/").toString().length);
}
if (base.endsWith("/")) {
base = base.substring(0, base.length - 1);
}
var master = options.hosts[0].hostname;
// We sort a clone of options.hosts, to keep the master as the first element
// for future calls.
var sorted = options.hosts.slice(0).sort(function (a, b) {
if (a.hostname === master) {
return -1;
}
return naturalSortCompare(a.hostname, b.hostname);
});
let displayedDatabases = false;
for (var s of sorted) {
let url, icon;
const hostname = s.hostname;
if (myNetdataMenuFilterValue !== "") {
if (!hostname.includes(myNetdataMenuFilterValue)) {
continue;
}
}
displayedDatabases = true;
if (hostname === master) {
url = `${base}/`;
icon = 'home';
} else {
url = `${base}/host/${hostname}/`;
icon = 'window-restore';
}
html += (
`<div class="agent-item">
<a class="registry_link" href="${url}#" onClick="return gotoHostedModalHandler('${url}');">
<i class="fas fa-${icon}" style="color: #999;"></i>
</a>
<span class="__title" onClick="return gotoHostedModalHandler('${url}');">
<a class="registry_link" href="${url}#">${hostname}</a>
</span>
<div></div>
</div>`
)
}
if (!displayedDatabases) {
html += (
`<div class="info-item">
<i class="fas fa-filter"></i>
<span style="margin-left: 8px">no databases match the filter criteria.<span>
</div>`
)
}
return html;
}
function renderMachines(machinesArray) {
let html = `<div class="info-item">My nodes</div>`;
if (machinesArray === null) {
let ret = loadLocalStorage("registryCallback");
if (ret) {
machinesArray = JSON.parse(ret);
console.log("failed to contact the registry - loaded registry data from browser local storage");
}
}
let found = false;
let displayedAgents = false;
const maskedURL = NETDATA.registry.MASKED_DATA;
if (machinesArray) {
saveLocalStorage("registryCallback", JSON.stringify(machinesArray));
var machines = machinesArray.sort(function (a, b) {
return naturalSortCompare(a.name, b.name);
});
for (var machine of machines) {
found = true;
if (myNetdataMenuFilterValue !== "") {
if (!machine.name.includes(myNetdataMenuFilterValue)) {
continue;
}
}
displayedAgents = true;
const alternateUrlItems = (
`<div class="agent-alternate-urls agent-${machine.guid} collapsed">
${machine.alternate_urls.reduce((str, url) => {
if (url === maskedURL) {
return str
}
return str + (
`<div class="agent-item agent-item--alternate">
<div></div>
<a href="${url}" title="${url}">${truncateString(url, 64)}</a>
<a href="#" onclick="deleteRegistryModalHandler('${machine.guid}', '${machine.name}', '${url}'); return false;">
<i class="fas fa-trash" style="color: #777;"></i>
</a>
</div>`
)
},
''
)}
</div>`
)
html += (
`<div class="agent-item agent-${machine.guid}">
<i class="fas fa-chart-bar" color: #fff"></i>
<span class="__title" onClick="return gotoServerModalHandler('${machine.guid}');">
<a class="registry_link" href="${machine.url}#">${machine.name}</a>
</span>
<a href="#" onClick="toggleAgentItem(event, '${machine.guid}');">
<i class="fas fa-caret-down" style="color: #999"></i>
</a>
</div>
${alternateUrlItems}`
)
}
if (found && (!displayedAgents)) {
html += (
`<div class="info-item">
<i class="fas fa-filter"></i>
<span style="margin-left: 8px">zero nodes are matching the filter value.<span>
</div>`
)
}
}
if (!found) {
if (machines) {
html += (
`<div class="info-item">
<a href="https://github.com/netdata/netdata/tree/master/registry#netdata-registry" target="_blank">Your nodes list is empty</a>
</div>`
)
} else {
html += (
`<div class="info-item">
<a href="https://github.com/netdata/netdata/tree/master/registry#netdata-registry" target="_blank">Failed to contact the registry</a>
</div>`
)
}
html += `<hr />`;
html += `<div class="info-item">Demo netdata nodes</div>`;
const demoServers = [
{ url: "//london.netdata.rocks/default.html", title: "UK - London (DigitalOcean.com)" },
{ url: "//newyork.netdata.rocks/default.html", title: "US - New York (DigitalOcean.com)" },
{ url: "//sanfrancisco.netdata.rocks/default.html", title: "US - San Francisco (DigitalOcean.com)" },
{ url: "//atlanta.netdata.rocks/default.html", title: "US - Atlanta (CDN77.com)" },
{ url: "//frankfurt.netdata.rocks/default.html", title: "Germany - Frankfurt (DigitalOcean.com)" },
{ url: "//toronto.netdata.rocks/default.html", title: "Canada - Toronto (DigitalOcean.com)" },
{ url: "//singapore.netdata.rocks/default.html", title: "Japan - Singapore (DigitalOcean.com)" },
{ url: "//bangalore.netdata.rocks/default.html", title: "India - Bangalore (DigitalOcean.com)" },
]
for (var server of demoServers) {
html += (
`<div class="agent-item">
<i class="fas fa-chart-bar" style="color: #fff"></i>
<a href="${server.url}">${server.title}</a>
<div></div>
</div>
`
);
}
}
return html;
}
function setMyNetdataMenu(html) {
const el = document.getElementById('my-netdata-dropdown-content')
el.innerHTML = html;
}
function clearMyNetdataMenu() {
setMyNetdataMenu(`<div class="agent-item" style="white-space: nowrap">
<i class="fas fa-hourglass-half"></i>
Loading, please wait...
<div></div>
</div>`);
}
function errorMyNetdataMenu() {
setMyNetdataMenu(`<div class="agent-item" style="padding: 0 8px">
<i class="fas fa-exclamation-triangle" style="color: red"></i>
Cannot load known Netdata agents from Netdata Cloud! Please make sure you have the latest version of Netdata.
</div>`);
}
function restrictMyNetdataMenu() {
setMyNetdataMenu(`<div class="info-item" style="white-space: nowrap">
<span>Please <a href="#" onclick="signInDidClick(event); return false">sign in to netdata.cloud</a> to view your nodes!</span>
<div></div>
</div>`);
}
function openAuthenticatedUrl(url) {
if (isSignedIn()) {
window.open(url);
} else {
window.open(`${NETDATA.registry.cloudBaseURL}/account/sign-in-agent?id=${NETDATA.registry.machine_guid}&name=${encodeURIComponent(NETDATA.registry.hostname)}&origin=${encodeURIComponent(window.location.origin + "/")}&redirect_uri=${encodeURIComponent(window.location.origin + "/" + url)}`);
}
}
function renderMyNetdataMenu(machinesArray) {
const el = document.getElementById('my-netdata-dropdown-content');
el.classList.add(`theme-${netdataTheme}`);
if (machinesArray == registryAgents) {
console.log("Rendering my-netdata menu from registry");
} else {
console.log("Rendering my-netdata menu from netdata.cloud", machinesArray);
}
let html = '';
if (!isSignedIn()) {
if (!NETDATA.registry.isRegistryEnabled()) {
html += (
`<div class="info-item" style="white-space: nowrap">
<span>Please <a href="#" onclick="signInDidClick(event); return false">sign in to netdata.cloud</a> to view your nodes!</span>
<div></div>
</div>
<hr />`
);
}
}
if (isSignedIn()) {
html += (
`<div class="filter-control">
<input
id="my-netdata-menu-filter-input"
type="text"
placeholder="filter nodes..."
autofocus
autocomplete="off"
value="${myNetdataMenuFilterValue}"
onkeydown="myNetdataFilterDidChange(event)"
/>
<span class="filter-control__clear" onclick="myNetdataFilterClearDidClick(event)"><i class="fas fa-times"></i><span>
</div>
<hr />`
);
}
// options.hosts = [
// {
// hostname: "streamed1",
// },
// {
// hostname: "streamed2",
// },
// ]
if (options.hosts.length > 1) {
html += `<div id="my-netdata-menu-streamed">${renderStreamedHosts(options)}</div><hr />`;
}
if (isSignedIn() || NETDATA.registry.isRegistryEnabled()) {
html += `<div id="my-netdata-menu-machines">${renderMachines(machinesArray)}</div><hr />`;
}
if (!isSignedIn()) {
html += (
`<div class="agent-item">
<i class="fas fa-tv"></i>
<a onClick="openAuthenticatedUrl('console.html');" target="_blank">Nodes<sup class="beta"> beta</sup></a>
<div></div>
</div>
<div class="agent-item">
<i class="fas fa-cog""></i>
<a href="#" onclick="switchRegistryModalHandler(); return false;">Switch Identity</a>
<div></div>
</div>
<div class="agent-item">
<i class="fas fa-question-circle""></i>
<a href="https://github.com/netdata/netdata/tree/master/registry#netdata-registry" target="_blank">What is this?</a>
<div></div>
</div>`
)
} else {
html += (
`<div class="agent-item">
<i class="fas fa-tv"></i>
<a onclick="openAuthenticatedUrl('console.html');" target="_blank">Nodes<sup class="beta"> beta</sup></a>
<div></div>
</div>
<div class="agent-item">
<i class="fas fa-sync"></i>
<a href="#" onclick="showSyncModal(); return false">Synchronize with netdata.cloud</a>
<div></div>
</div>
<div class="agent-item">
<i class="fas fa-question-circle""></i>
<a href="https://netdata.cloud/about" target="_blank">What is this?</a>
<div></div>
</div>`
)
}
el.innerHTML = html;
gotoServerInit();
}
function isdemo() {
if (this_is_demo !== null) {
return this_is_demo;
}
this_is_demo = false;
try {
if (typeof document.location.hostname === 'string') {
if (document.location.hostname.endsWith('.my-netdata.io') ||
document.location.hostname.endsWith('.mynetdata.io') ||
document.location.hostname.endsWith('.netdata.rocks') ||
document.location.hostname.endsWith('.netdata.ai') ||
document.location.hostname.endsWith('.netdata.live') ||
document.location.hostname.endsWith('.firehol.org') ||
document.location.hostname.endsWith('.netdata.online') ||
document.location.hostname.endsWith('.netdata.cloud')) {
this_is_demo = true;
}
}
}
catch (error) {
}
return this_is_demo;
}
function netdataURL(url, forReload) {
if (typeof url === 'undefined')
// url = document.location.toString();
{
url = '';
}
if (url.indexOf('#') !== -1) {
url = url.substring(0, url.indexOf('#'));
}
var hash = urlOptions.genHash(forReload);
// console.log('netdataURL: ' + url + hash);
return url + hash;
}
function netdataReload(url) {
document.location = verifyURL(netdataURL(url, true));
// since we play with hash
// this is needed to reload the page
location.reload();
}
function gotoHostedModalHandler(url) {
document.location = verifyURL(url + urlOptions.genHash());
return false;
}
var gotoServerValidateRemaining = 0;
var gotoServerMiddleClick = false;
var gotoServerStop = false;
function gotoServerValidateUrl(id, guid, url) {
var penalty = 0;
var error = 'failed';
if (document.location.toString().startsWith('http://') && url.toString().startsWith('https://'))
// we penalize https only if the current url is http
// to allow the user walk through all its servers.
{
penalty = 500;
} else if (document.location.toString().startsWith('https://') && url.toString().startsWith('http://')) {
error = 'can\'t check';
}
var finalURL = netdataURL(url);
setTimeout(function () {
document.getElementById('gotoServerList').innerHTML += '<tr><td style="padding-left: 20px;"><a href="' + verifyURL(finalURL) + '" target="_blank">' + escapeUserInputHTML(url) + '</a></td><td style="padding-left: 30px;"><code id="' + guid + '-' + id + '-status">checking...</code></td></tr>';
NETDATA.registry.hello(url, function (data) {
if (typeof data !== 'undefined' && data !== null && typeof data.machine_guid === 'string' && data.machine_guid === guid) {
// console.log('OK ' + id + ' URL: ' + url);
document.getElementById(guid + '-' + id + '-status').innerHTML = "OK";
if (!gotoServerStop) {
gotoServerStop = true;
if (gotoServerMiddleClick) {
window.open(verifyURL(finalURL), '_blank');
gotoServerMiddleClick = false;
document.getElementById('gotoServerResponse').innerHTML = '<b>Opening new window to ' + NETDATA.registry.machines[guid].name + '<br/><a href="' + verifyURL(finalURL) + '">' + escapeUserInputHTML(url) + '</a></b><br/>(check your pop-up blocker if it fails)';
} else {
document.getElementById('gotoServerResponse').innerHTML += 'found it! It is at:<br/><small>' + escapeUserInputHTML(url) + '</small>';
document.location = verifyURL(finalURL);
$('#gotoServerModal').modal('hide');
}
}
} else {
if (typeof data !== 'undefined' && data !== null && typeof data.machine_guid === 'string' && data.machine_guid !== guid) {
error = 'wrong machine';
}
document.getElementById(guid + '-' + id + '-status').innerHTML = error;
gotoServerValidateRemaining--;
if (gotoServerValidateRemaining <= 0) {
gotoServerMiddleClick = false;
document.getElementById('gotoServerResponse').innerHTML = '<b>Sorry! I cannot find any operational URL for this server</b>';
}
}
});
}, (id * 50) + penalty);
}
function gotoServerModalHandler(guid) {
// console.log('goto server: ' + guid);
gotoServerStop = false;
var checked = {};
var len = NETDATA.registry.machines[guid].alternate_urls.length;
var count = 0;
document.getElementById('gotoServerResponse').innerHTML = '';
document.getElementById('gotoServerList').innerHTML = '';
document.getElementById('gotoServerName').innerHTML = NETDATA.registry.machines[guid].name;
$('#gotoServerModal').modal('show');
gotoServerValidateRemaining = len;
while (len--) {
var url = NETDATA.registry.machines[guid].alternate_urls[len];
checked[url] = true;
gotoServerValidateUrl(count++, guid, url);
}
if (!isSignedIn()) {
// When the registry is enabled, if the user's known URLs are not working
// we consult the registry to get additional URLs.
setTimeout(function () {
if (gotoServerStop === false) {
document.getElementById('gotoServerResponse').innerHTML = '<b>Added all the known URLs for this machine.</b>';
NETDATA.registry.search(guid, function (data) {
// console.log(data);
len = data.urls.length;
while (len--) {
var url = data.urls[len][1];
// console.log(url);
if (typeof checked[url] === 'undefined') {
gotoServerValidateRemaining++;
checked[url] = true;
gotoServerValidateUrl(count++, guid, url);
}
}
});
}
}, 2000);
}
return false;
}
function gotoServerInit() {
$(".registry_link").on('click', function (e) {
if (e.which === 2) {
e.preventDefault();
gotoServerMiddleClick = true;
} else {
gotoServerMiddleClick = false;
}
return true;