Package com.yammer.metrics.reporting

Examples of com.yammer.metrics.reporting.AdminServlet


                new DefaultWebappMetricsFilter());
        metricsFilter.addMappingForUrlPatterns(disps, true, "/*");

        log.debug("Registering Metrics Admin Servlet");
        ServletRegistration.Dynamic metricsAdminServlet =
                servletContext.addServlet("metricsAdminServlet", new AdminServlet());
        metricsAdminServlet.addMapping("/metrics/*");
        dispatcherServlet.setLoadOnStartup(2);
    }
View Full Code Here

TOP

Related Classes of com.yammer.metrics.reporting.AdminServlet

Copyright © 2018 www.massapicom. 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.