This commit is contained in:
allard
2025-03-26 21:27:52 +01:00
parent a2c66e6b77
commit 6b231c7d30

View File

@@ -13,7 +13,7 @@ function displayMetrics() {
}
function getSystemMetrics() {
var url = "https://olproperties-dev.alldcs.nl/metrics";
var url = "https://olproperties-dev.allarddcs.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-dev.allarddcs.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-dev.allarddcs.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-dev.allarddcs.nl/config";
var req = new XMLHttpRequest();
var configToDisplay = {};