com.northernwall.hadrian.handlers.utility.HealthHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Hadrian Show documentation
Show all versions of Hadrian Show documentation
Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.
/*
* Copyright 2014 Richard Thurston.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.northernwall.hadrian.handlers.utility;
import com.northernwall.hadrian.db.DataAccess;
import com.northernwall.hadrian.module.ModuleArtifactHelper;
import com.northernwall.hadrian.messaging.MessagingCoodinator;
import com.northernwall.hadrian.module.ModuleConfigHelper;
import com.northernwall.hadrian.parameters.Parameters;
import com.northernwall.hadrian.schedule.Scheduler;
import java.io.IOException;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.lang.management.ThreadMXBean;
import java.net.InetAddress;
import java.time.OffsetDateTime;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.handler.AbstractHandler;
/**
*
* @author Richard Thurston
*/
public class HealthHandler extends AbstractHandler {
private final Handler accessHandler;
private final DataAccess dataAccess;
private final ModuleArtifactHelper moduleArtifactHelper;
private final ModuleConfigHelper moduleConfigHelper;
private final Parameters parameters;
private final MessagingCoodinator messagingCoodinator;
private final Scheduler scheduler;
private final String version;
public HealthHandler(Handler accessHandler, DataAccess dataAccess, ModuleArtifactHelper moduleArtifactHelper, ModuleConfigHelper moduleConfigHelper, Parameters parameters, MessagingCoodinator messagingCoodinator, Scheduler scheduler) {
this.accessHandler = accessHandler;
this.dataAccess = dataAccess;
this.moduleArtifactHelper = moduleArtifactHelper;
this.moduleConfigHelper = moduleConfigHelper;
this.parameters = parameters;
this.messagingCoodinator = messagingCoodinator;
this.scheduler = scheduler;
String temp = getClass().getPackage().getImplementationVersion();
if (temp == null) {
version = "unknown";
} else {
version = temp;
}
}
@Override
public void handle(String target, Request request, HttpServletRequest httpRequest, HttpServletResponse response) throws IOException, ServletException {
response.setStatus(200);
showHealth(response);
request.setHandled(true);
}
private void showHealth(HttpServletResponse response) throws IOException {
RuntimeMXBean runtimeMXBean = ManagementFactory.getRuntimeMXBean();
ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean();
HealthWriter writer = new HealthWriter(response.getOutputStream());
writer.open();
writer.addStringLine("App Version", version);
writer.addStringLine("Host Name", InetAddress.getLocalHost().getHostName());
writer.addStringLine("JVM Name", runtimeMXBean.getSpecName());
writer.addStringLine("JVM Version", runtimeMXBean.getSpecVersion());
writer.addStringLine("JVM Vendor", runtimeMXBean.getSpecVendor());
writer.addIntLine("JVM Threads", threadMXBean.getThreadCount());
writer.addIntLine("JVM Peak Threads", threadMXBean.getPeakThreadCount());
writer.addDateTimeLine("Current Time", OffsetDateTime.now());
writer.addDateLine("Start Time", new Date(runtimeMXBean.getStartTime()));
writer.addClassLine("Class - Access Handler", accessHandler);
writer.addClassLine("Class - Data Access", dataAccess);
writer.addClassLine("Class - Module Artifact Helper", moduleArtifactHelper);
writer.addClassLine("Class - Module Config Helper", moduleConfigHelper);
writer.addClassLine("Class - Parameters", parameters);
dataAccess.getHealth(writer);
messagingCoodinator.getHealth(writer);
scheduler.getHealth(writer);
writer.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy