Package com.wowza.wms.stats
Interface IStatsManager
- 
 public interface IStatsManager
- 
- 
Field SummaryFields Modifier and Type Field Description static intDAYS_OF_DAILY_STORAGEstatic intDAYS_OF_HOURLY_STORAGEstatic intDAYS_OF_MINUTES_STORAGEstatic intHOURS_OF_REALTIME_STORAGEstatic intSECONDS_RESOLUTION
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IStatsDatabaseManagergetStatsDatabaseManager()Gets the currently used IStatsDBManager interfacebooleanisEnabled()Indicates if the Stats Manager is enabled.voidrollup(IStatsDatabase<?> database)Rollups up the provided databasevoidsetDebugLogging(boolean enable)enables/disables debug logging in the StatsManager.voidsetStatsDatabaseManager(IStatsDatabaseManager dbManager)Sets the DBManager to be used by the stats manager for open/closing the various databasesvoidstartManager(IServer server)Starts the stats manager collecting stats datavoidstopManager()Stops the Stats manager collecting stats data
 
- 
- 
- 
Field Detail- 
SECONDS_RESOLUTIONstatic final int SECONDS_RESOLUTION - See Also:
- Constant Field Values
 
 - 
HOURS_OF_REALTIME_STORAGEstatic final int HOURS_OF_REALTIME_STORAGE - See Also:
- Constant Field Values
 
 - 
DAYS_OF_MINUTES_STORAGEstatic final int DAYS_OF_MINUTES_STORAGE - See Also:
- Constant Field Values
 
 - 
DAYS_OF_HOURLY_STORAGEstatic final int DAYS_OF_HOURLY_STORAGE - See Also:
- Constant Field Values
 
 - 
DAYS_OF_DAILY_STORAGEstatic final int DAYS_OF_DAILY_STORAGE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
startManagervoid startManager(IServer server) Starts the stats manager collecting stats data- Parameters:
- server- - IServer to collect data from
 
 - 
stopManagervoid stopManager() Stops the Stats manager collecting stats data
 - 
isEnabledboolean isEnabled() Indicates if the Stats Manager is enabled.
 - 
setStatsDatabaseManagervoid setStatsDatabaseManager(IStatsDatabaseManager dbManager) Sets the DBManager to be used by the stats manager for open/closing the various databases- Parameters:
- dbManager- - IStatsDBManager database manager
 
 - 
getStatsDatabaseManagerIStatsDatabaseManager getStatsDatabaseManager() Gets the currently used IStatsDBManager interface- Returns:
- IStatsDBManager
 
 - 
rollupvoid rollup(IStatsDatabase<?> database) Rollups up the provided database- Parameters:
- database- server - IServer to collect data from
 
 - 
setDebugLoggingvoid setDebugLogging(boolean enable) enables/disables debug logging in the StatsManager.- Parameters:
- enable-
 
 
- 
 
-