Package com.saperion.ngc.statistics
Interface WebClientStatisticsMBean
-
- All Known Implementing Classes:
WebClientStatistics
public interface WebClientStatisticsMBean
Static MBean for statistics data of the application. Gets registered byWebClientStatistics
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getActiveDesktopCount()
int
getActiveSessionCount()
int
getActiveUpdateCount()
double
getAverageDesktopCount()
double
getAverageSessionCount()
double
getAverageUpdateCount()
java.lang.String
getStarted()
int
getTotalDesktopCount()
int
getTotalSessionCount()
int
getTotalUpdateCount()
-
-
-
Method Detail
-
getActiveDesktopCount
int getActiveDesktopCount()
- Returns:
- the number of active
Desktop
instances.
-
getActiveSessionCount
int getActiveSessionCount()
- Returns:
- the number of active
Session
instances.
-
getActiveUpdateCount
int getActiveUpdateCount()
- Returns:
- the number of active asynchronous updates processed by ZK engine.
-
getAverageDesktopCount
double getAverageDesktopCount()
- Returns:
- the average number of
Desktop
s per hour.
-
getAverageSessionCount
double getAverageSessionCount()
- Returns:
- the average number of
Session
s per hour.
-
getAverageUpdateCount
double getAverageUpdateCount()
- Returns:
- the average number of asynchronous updates processed by ZK engine per hour.
-
getStarted
java.lang.String getStarted()
- Returns:
- the time when the application was started.
-
getTotalDesktopCount
int getTotalDesktopCount()
- Returns:
- the total number of
Desktop
instances.
-
getTotalSessionCount
int getTotalSessionCount()
- Returns:
- the total number of
Session
instances.
-
getTotalUpdateCount
int getTotalUpdateCount()
- Returns:
- the total number of asynchronous updates processed by ZK engine.
-
-