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 Constructor Description ContextListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(javax.servlet.ServletContextEvent event)voidcontextInitialized(javax.servlet.ServletContextEvent event)protected ExecutorServicegetExecutorService()protected com.codahale.metrics.health.HealthCheckFiltergetHealthCheckFilter()protected abstract com.codahale.metrics.health.HealthCheckRegistrygetHealthCheckRegistry()protected com.fasterxml.jackson.databind.ObjectMappergetObjectMapper()
-
-
-
Method Detail
-
getHealthCheckRegistry
protected abstract com.codahale.metrics.health.HealthCheckRegistry getHealthCheckRegistry()
- Returns:
- the
HealthCheckRegistryto inject into the servlet context.
-
getExecutorService
protected ExecutorService 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
-
-