Package org.cipango.console.printer.statistics

Examples of org.cipango.console.printer.statistics.HttpStatisticsPrinter


      addPrinter(new SipStatisticPrinter(connection, null, null), "SIP statistics");
     
      if (MenuPrinter.STATISTICS_DIAMETER.isEnabled(connection))
        addPrinter(new DiameterStatisticsPrinter(connection), "Diameter statistics");
     
      addPrinter(new HttpStatisticsPrinter(connection), "HTTP statistics");
     
      add(new HtmlPrinter()
      {
        public void print(Writer out) throws Exception
        {
View Full Code Here


      else if (command.equals(MenuPrinter.STATISTICS_DIAMETER.getName()))
        request.setAttribute(Attributes.CONTENT, new DiameterStatisticsPrinter(_mbsc));
      else if (command.equals(MenuPrinter.CONFIG_HTTP.getName()))
        doHttpConfig(request);
      else if (command.equals(MenuPrinter.STATISTICS_HTTP.getName()))
        request.setAttribute(Attributes.CONTENT, new HttpStatisticsPrinter(_mbsc));
      else if (command.equals(MenuPrinter.HTTP_LOGS.getName()))
        request.setAttribute(Attributes.CONTENT, new FileLogPrinter(_mbsc, MenuPrinter.HTTP_LOGS, HTTP_LOG, false));
      else if (command.equals(MenuPrinter.DAR.getName()))
        request.setAttribute(Attributes.CONTENT, new DarPrinter(_mbsc));
      else if (command.equals("statisticGraph.png"))
View Full Code Here

TOP

Related Classes of org.cipango.console.printer.statistics.HttpStatisticsPrinter

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.