Package com.saperion.ngc.statistics
Interface WebClientStatisticsMBean
-
- All Known Implementing Classes:
WebClientStatistics
public interface WebClientStatisticsMBeanStatic MBean for statistics data of the application. Gets registered byWebClientStatistics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActiveDesktopCount()intgetActiveSessionCount()intgetActiveUpdateCount()doublegetAverageDesktopCount()doublegetAverageSessionCount()doublegetAverageUpdateCount()java.lang.StringgetStarted()intgetTotalDesktopCount()intgetTotalSessionCount()intgetTotalUpdateCount()
-
-
-
Method Detail
-
getActiveDesktopCount
int getActiveDesktopCount()
- Returns:
- the number of active
Desktopinstances.
-
getActiveSessionCount
int getActiveSessionCount()
- Returns:
- the number of active
Sessioninstances.
-
getActiveUpdateCount
int getActiveUpdateCount()
- Returns:
- the number of active asynchronous updates processed by ZK engine.
-
getAverageDesktopCount
double getAverageDesktopCount()
- Returns:
- the average number of
Desktops per hour.
-
getAverageSessionCount
double getAverageSessionCount()
- Returns:
- the average number of
Sessions 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
Desktopinstances.
-
getTotalSessionCount
int getTotalSessionCount()
- Returns:
- the total number of
Sessioninstances.
-
getTotalUpdateCount
int getTotalUpdateCount()
- Returns:
- the total number of asynchronous updates processed by ZK engine.
-
-