Package com.codahale.metrics.servlets
Class HealthCheckServlet.ContextListener
java.lang.Object
com.codahale.metrics.servlets.HealthCheckServlet.ContextListener
- All Implemented Interfaces:
EventListener,javax.servlet.ServletContextListener
- Enclosing class:
- HealthCheckServlet
public abstract static class HealthCheckServlet.ContextListener
extends Object
implements javax.servlet.ServletContextListener
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcontextDestroyed(javax.servlet.ServletContextEvent event) voidcontextInitialized(javax.servlet.ServletContextEvent event) protected ExecutorServiceprotected com.codahale.metrics.health.HealthCheckFilterprotected abstract com.codahale.metrics.health.HealthCheckRegistryprotected com.fasterxml.jackson.databind.ObjectMapper
-
Constructor Details
-
ContextListener
public ContextListener()
-
-
Method Details
-
getHealthCheckRegistry
protected abstract com.codahale.metrics.health.HealthCheckRegistry getHealthCheckRegistry()- Returns:
- the
HealthCheckRegistryto inject into the servlet context.
-
getExecutorService
- Returns:
- the
ExecutorServiceto inject into the servlet context, ornullif the health checks should be run in the servlet worker thread.
-
getHealthCheckFilter
protected com.codahale.metrics.health.HealthCheckFilter getHealthCheckFilter()- Returns:
- the
HealthCheckFilterthat shall be used to filter health checks, orHealthCheckFilter.ALLif the default should be used.
-
getObjectMapper
protected com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()- Returns:
- the
ObjectMapperthat shall be used to render health checks, ornullif the default object mapper should be used.
-
contextInitialized
public void contextInitialized(javax.servlet.ServletContextEvent event) - Specified by:
contextInitializedin interfacejavax.servlet.ServletContextListener
-
contextDestroyed
public void contextDestroyed(javax.servlet.ServletContextEvent event) - Specified by:
contextDestroyedin interfacejavax.servlet.ServletContextListener
-