All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.welen.jmole.microprofile.JMoleHealth Maven / Gradle / Ivy

package net.welen.jmole.microprofile;

/*-
 * #%L
 * JMole, https://bitbucket.org/awelen/jmole
 * %%
 * Copyright (C) 2015 - 2020 Anders Welén, [email protected]
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser 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 General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;

import org.eclipse.microprofile.health.HealthCheck;
import org.eclipse.microprofile.health.HealthCheckResponse;
import org.eclipse.microprofile.health.HealthCheckResponseBuilder;
import org.eclipse.microprofile.health.Liveness;

import net.welen.jmole.JMole;
import net.welen.jmole.cdi.LifecycleBean;

@Liveness
@ApplicationScoped
public class JMoleHealth implements HealthCheck {

	private static final String INCLUDE_WARNINGS = "jmole.protocol.microprofile.health.includeWarnings";
	private static final String DOWN_IF_WARNINGS = "jmole.protocol.microprofile.health.downIfWarnings";
	private static final String EXCLUDE_ERRORS = "jmole.protocol.microprofile.health.excludeErrors";
	private static final String INCLUDE_MEASUREMENTS = "jmole.protocol.microprofile.health.includeMeasurements";

	@Inject
	LifecycleBean lifecycleBean;

	@Override
	public HealthCheckResponse call() {
		JMole jmole = lifecycleBean.getJMoleInstance();
		
		HealthCheckResponseBuilder answer = HealthCheckResponse.named("JMole");

		answer.up();

		try {
			Map> criticals = jmole.criticalMessages();
			Map> warnings = jmole.warningMessages();

			if (!criticals.isEmpty()) {
				answer.down();
				if (!Boolean.getBoolean(EXCLUDE_ERRORS)) {
					addValues("CRITICAL ", answer, criticals);
				}
			}
	
			if (!warnings.isEmpty()) {
				if (Boolean.getBoolean(DOWN_IF_WARNINGS)) {
					answer.down();
				}
				if (Boolean.getBoolean(INCLUDE_WARNINGS)) {
					addValues("WARNING ", answer, warnings);
				}
			}
	
			if (Boolean.getBoolean(INCLUDE_MEASUREMENTS)) {
				addMeasurement(answer, jmole.collectMeasurements());
			}
		} catch (Exception e) {
			throw new RuntimeException(e.getMessage(), e);
		}
			
		return answer.build();
	}

	private void addValues(String prefix, HealthCheckResponseBuilder answer, Map> values) {
		for (Entry> categoryEntry : values.entrySet()) {
			String category = categoryEntry.getKey();
			for (Entry entry : categoryEntry.getValue().entrySet()) {
				answer.withData(prefix + category + " " + entry.getKey(), entry.getValue());
			}
		}
	}

	private void addMeasurement(HealthCheckResponseBuilder answer,
			Map>>> collectMeasurements) {

		for (Entry>>> categoryEntry : collectMeasurements.entrySet()) {
			String category = categoryEntry.getKey();
			Iterator>> iter = categoryEntry.getValue().iterator();
			while (iter.hasNext()) {				
				for (Entry> nameEntry : iter.next().entrySet()) {
					String name = nameEntry.getKey();
					for (Entry attributeEntry : nameEntry.getValue().entrySet()) {
						String attribute = attributeEntry.getKey();
						Object value = attributeEntry.getValue();
						if (value ==  null) {														
							answer.withData(category + " " + name + " " + attribute, "null");
						} else {
							answer.withData(category + " " + name + " " + attribute, value.toString());
						}
					}
				}
			}
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy