Examples of PingServlet


Examples of com.codahale.metrics.servlets.PingServlet

      @Override
      protected void configureServlets() {
        bind(MetricsServlet.class);
        bind(HealthCheckServlet.class);

        serve(MOUNT_POINT + "/ping").with(new PingServlet());
        serve(MOUNT_POINT + "/threads").with(new ThreadDumpServlet());
        serve(MOUNT_POINT + "/metrics").with(MetricsServlet.class);
        serve(MOUNT_POINT + "/healthcheck").with(HealthCheckServlet.class);

        // record metrics for all webapp access
View Full Code Here

Examples of org.vaadin.spring.touchkit.servlet.PingServlet

        return PingServlet.class;
    }

    @Override
    protected HttpServlet createServlet() {
        return new PingServlet();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.