Package org.cipango.console.printer.statistics

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


    {
      // About
      add(new PropertiesTextPrinter(consoleFilter.getVersion()));
      add(new PropertiesTextPrinter(consoleFilter.getEnvironment()));
      // Stats
      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");
View Full Code Here


      {
        request.setAttribute(Attributes.JAVASCRIPT_SRC, "javascript/upload.js");
        request.setAttribute(Attributes.CONTENT, new ApplicationPrinter(_mbsc));
      }
      else if (command.equals(MenuPrinter.STATISTICS_SIP.getName()))
        request.setAttribute(Attributes.CONTENT, new SipStatisticPrinter(_mbsc, _statisticGraph,
            (Integer) request.getSession().getAttribute(Parameters.TIME)));
      else if (command.equals(MenuPrinter.ABOUT.getName()))
        doAbout(request);
      else if (command.equals(MenuPrinter.SYSTEM_PROPERTIES.getName()))
        request.setAttribute(Attributes.CONTENT, new SystemPropertiesPrinter());
View Full Code Here

TOP

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

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.