summaryrefslogtreecommitdiffstats
path: root/web/gui/src/dashboard.js/server-detection.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
commitbe1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch)
tree9754ff1ca740f6346cf8483ec915d4054bc5da2d /web/gui/src/dashboard.js/server-detection.js
parentInitial commit. (diff)
downloadnetdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.tar.xz
netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.zip
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/gui/src/dashboard.js/server-detection.js')
-rw-r--r--web/gui/src/dashboard.js/server-detection.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/web/gui/src/dashboard.js/server-detection.js b/web/gui/src/dashboard.js/server-detection.js
new file mode 100644
index 00000000..472ad48b
--- /dev/null
+++ b/web/gui/src/dashboard.js/server-detection.js
@@ -0,0 +1,29 @@
+
+// *** src/dashboard.js/server-detection.js
+
+if (typeof netdataServer !== 'undefined') {
+ NETDATA.serverDefault = netdataServer;
+} else {
+ let s = NETDATA._scriptSource();
+ if (s) {
+ NETDATA.serverDefault = s.replace(/\/dashboard.js(\?.*)?$/g, "");
+ } else {
+ console.log('WARNING: Cannot detect the URL of the netdata server.');
+ NETDATA.serverDefault = null;
+ }
+}
+
+if (NETDATA.serverDefault === null) {
+ NETDATA.serverDefault = '';
+} else if (NETDATA.serverDefault.slice(-1) !== '/') {
+ NETDATA.serverDefault += '/';
+}
+
+if (typeof netdataServerStatic !== 'undefined' && netdataServerStatic !== null && netdataServerStatic !== '') {
+ NETDATA.serverStatic = netdataServerStatic;
+ if (NETDATA.serverStatic.slice(-1) !== '/') {
+ NETDATA.serverStatic += '/';
+ }
+} else {
+ NETDATA.serverStatic = NETDATA.serverDefault;
+}