Interface WebModuleStats

All Superinterfaces:
Stats

public interface WebModuleStats extends Stats
Interface for querying web module statistics.
  • Method Details

    • getJspCount

      CountStatistic getJspCount()
      Gets the number of JSPs that have been loaded in the web module associated with this WebModuleStats. .
      Returns:
      Number of JSPs that have been loaded
    • getJspReloadCount

      CountStatistic getJspReloadCount()
      Gets the number of JSPs that have been reloaded in the web module associated with this WebModuleStats .
      Returns:
      Number of JSPs that have been reloaded
    • getJspErrorCount

      CountStatistic getJspErrorCount()
      Gets the number of errors that were triggered by JSP invocations. .
      Returns:
      Number of errors triggered by JSP invocations
    • getSessionsTotal

      CountStatistic getSessionsTotal()
      Gets the total number of sessions that have been created for the web module associated with this WebModuleStats. .
      Returns:
      Total number of sessions created
    • getActiveSessionsCurrent

      CountStatistic getActiveSessionsCurrent()
      Gets the number of currently active sessions for the web module associated with this WebModuleStats. .
      Returns:
      Number of currently active sessions
    • getActiveSessionsHigh

      CountStatistic getActiveSessionsHigh()
      Gets the maximum number of concurrently active sessions for the web module associated with this WebModuleStats.
      Returns:
      Maximum number of concurrently active sessions
    • getRejectedSessionsTotal

      CountStatistic getRejectedSessionsTotal()
      Gets the total number of rejected sessions for the web module associated with this WebModuleStats.

      This is the number of sessions that were not created because the maximum allowed number of sessions were active. .

      Returns:
      Total number of rejected sessions
    • getExpiredSessionsTotal

      CountStatistic getExpiredSessionsTotal()
      Gets the total number of expired sessions for the web module associated with this WebModuleStats. .
      Returns:
      Total number of expired sessions
    • getServletProcessingTimes

      CountStatistic getServletProcessingTimes()
      Gets the cumulative processing times of all servlets in the web module associated with this WebModuleStats.
      Returns:
      Cumulative processing times of all servlets in the web module associated with this WebModuleStats
    • getSessions

      StringStatistic getSessions()
      Returns comma-separated list of all sessions currently active in the web module associated with this WebModuleStats.
      Returns:
      Comma-separated list of all sessions currently active in the web module associated with this WebModuleStats
    • reset

      void reset()
      Resets this WebModuleStats.