url aangepast

This commit is contained in:
allard 2024-03-01 13:56:14 +01:00
parent a8ed31afb1
commit 5c6a274e22

View File

@ -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 = {};