From 5c6a274e225a8b16c4ebd2ebf60aed33bdc80acb Mon Sep 17 00:00:00 2001 From: allard Date: Fri, 1 Mar 2024 13:56:14 +0100 Subject: [PATCH] url aangepast --- src/main/webapp/js/mpData.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/webapp/js/mpData.js b/src/main/webapp/js/mpData.js index 584f3ee..cbd5a80 100644 --- a/src/main/webapp/js/mpData.js +++ b/src/main/webapp/js/mpData.js @@ -13,7 +13,7 @@ function displayMetrics() { } function getSystemMetrics() { - var url = "https://olproperties.alldcs.nl/metrics"; + var url = "https://olproperties-dev.alldcs.nl/metrics"; var req = new XMLHttpRequest(); var metricToDisplay = {}; @@ -86,7 +86,7 @@ function displaySystemProperties() { function getSystemPropertiesRequest() { var propToDisplay = ["java.vendor", "java.version", "user.name", "os.name", "wlp.install.dir", "wlp.server.name" ]; - var url = "https://olproperties.alldcs.nl/system/properties"; + var url = "https://olproperties-dev.alldcs.nl/system/properties"; var req = new XMLHttpRequest(); var table = document.getElementById("systemPropertiesTable"); // Create the callback: @@ -131,7 +131,7 @@ function displayHealth() { } function getHealth() { - var url = "https://olproperties.alldcs.nl/health"; + var url = "https://olproperties-dev.alldcs.nl/health"; var req = new XMLHttpRequest(); var healthBox = document.getElementById("healthBox"); @@ -173,7 +173,7 @@ function displayConfigProperties() { } function getConfigPropertiesRequest() { - var url = "https://olproperties.alldcs.nl/config"; + var url = "https://olproperties-dev.alldcs.nl/config"; var req = new XMLHttpRequest(); var configToDisplay = {};