From b9b342e2715bd2d3689f9ba0803af13cccf2cba2 Mon Sep 17 00:00:00 2001 From: Allard Krings Date: Thu, 11 Jul 2024 05:47:53 +0000 Subject: [PATCH] url's 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 cbd5a80..d6968cc 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-dev.alldcs.nl/metrics"; + var url = "https://olproperties-riscv.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-dev.alldcs.nl/system/properties"; + var url = "https://olproperties-riscv.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-dev.alldcs.nl/health"; + var url = "https://olproperties-riscv.alldcs.nl/health"; var req = new XMLHttpRequest(); var healthBox = document.getElementById("healthBox"); @@ -173,7 +173,7 @@ function displayConfigProperties() { } function getConfigPropertiesRequest() { - var url = "https://olproperties-dev.alldcs.nl/config"; + var url = "https://olproperties-riscv.alldcs.nl/config"; var req = new XMLHttpRequest(); var configToDisplay = {};