
org.openremote.manager.rules.RulesHealthStatusProvider Maven / Gradle / Ivy
/*
* Copyright 2017, OpenRemote Inc.
*
* See the CONTRIBUTORS.txt file in the distribution for a
* full listing of individual contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.openremote.manager.rules;
import org.openremote.model.Container;
import org.openremote.model.rules.AssetRuleset;
import org.openremote.model.rules.RealmRuleset;
import org.openremote.model.system.HealthStatusProvider;
import java.util.HashMap;
import java.util.Map;
public class RulesHealthStatusProvider implements HealthStatusProvider {
public static final String NAME = "rules";
protected RulesService rulesService;
@Override
public void init(Container container) throws Exception {
rulesService = container.getService(RulesService.class);
}
@Override
public void start(Container container) throws Exception {
}
@Override
public void stop(Container container) throws Exception {
}
@Override
public String getHealthStatusName() {
return NAME;
}
@Override
public Object getHealthStatus() {
int totalEngines = rulesService.realmEngines.size() + rulesService.assetEngines.size();
int stoppedEngines = 0;
int errorEngines = 0;
RulesEngine> globalEngine = rulesService.globalEngine.get();
if (globalEngine != null) {
totalEngines++;
if (!globalEngine.isRunning()) {
stoppedEngines++;
}
if (globalEngine.isError()) {
errorEngines++;
}
}
Map realmEngines = new HashMap<>();
for (RulesEngine realmEngine : rulesService.realmEngines.values()) {
if (!realmEngine.isRunning()) {
stoppedEngines++;
}
if (realmEngine.isError()) {
errorEngines++;
}
realmEngines.put(realmEngine.getId().getRealm().orElse(""), getEngineHealthStatus(realmEngine));
}
Map assetEngines = new HashMap<>();
for (RulesEngine assetEngine : rulesService.assetEngines.values()) {
if (!assetEngine.isRunning()) {
stoppedEngines++;
}
if (assetEngine.isError()) {
errorEngines++;
}
assetEngines.put(assetEngine.getId().getAssetId().orElse(""), getEngineHealthStatus(assetEngine));
}
Map objectValue = new HashMap<>();
objectValue.put("totalEngines", totalEngines);
objectValue.put("stoppedEngines", stoppedEngines);
objectValue.put("errorEngines", errorEngines);
if (globalEngine != null) {
objectValue.put("global", getEngineHealthStatus(globalEngine));
}
objectValue.put("realm", realmEngines);
objectValue.put("asset", assetEngines);
return objectValue;
}
protected Map getEngineHealthStatus(RulesEngine> rulesEngine) {
boolean isError = rulesEngine.isError();
int totalDeployments = rulesEngine.deployments.size();
int executionErrorDeployments = rulesEngine.getExecutionErrorDeploymentCount();
int compilationErrorDeployments = rulesEngine.getExecutionErrorDeploymentCount();
Map val = new HashMap<>();
val.put("isRunning", rulesEngine.isRunning());
val.put("isError", isError);
val.put("totalDeployments", totalDeployments);
val.put("executionErrorDeployments", executionErrorDeployments);
val.put("compilationErrorDeployments", compilationErrorDeployments);
Map deployments = new HashMap<>();
for (RulesetDeployment deployment : rulesEngine.deployments.values()) {
Map dVal = new HashMap<>();
dVal.put("name", deployment.getName());
dVal.put("status", deployment.getStatus().name());
dVal.put("error", deployment.getError() != null ? deployment.getError().getMessage() : null);
deployments.put(Long.toString(deployment.getId()), dVal);
}
val.put("deployments", deployments);
return val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy