Interface MonitorSource
-
- All Known Subinterfaces:
CacheSource
,DBConnectionSource
,JobSource
,UserConnectionSource
public interface MonitorSource
The interfaceMonitorSource
is the entry point to the monitoring functionality.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountSettings
getCountSettings()
Returns theCountSettings
object, used to obtain counts of items grouped by various monitor fieldsMonitorFilter
getFilter()
Returns theMonitorFilter
object, used to add some filter criteria to the request.int
getLevel()
Returns the level of information the users want to monitor.MonitorSort
getSortCriteria()
Returns theMonitorSort
object, used to control the sort order of the results.int
getType()
Returns the sub type of the currentMonitorSource
.void
reset()
Clears the count settings, max count, filter, and sort criteria.void
setLevel(int level)
Sets the level of information the users want to monitor.
-
-
-
Method Detail
-
getCountSettings
CountSettings getCountSettings()
Returns theCountSettings
object, used to obtain counts of items grouped by various monitor fields- Returns:
- a
CountSettings
object.
-
getFilter
MonitorFilter getFilter()
Returns theMonitorFilter
object, used to add some filter criteria to the request.- Returns:
- the
MonitorFilter
object
-
getSortCriteria
MonitorSort getSortCriteria()
Returns theMonitorSort
object, used to control the sort order of the results.- Returns:
- the
MonitorSort
object
-
getLevel
int getLevel()
Returns the level of information the users want to monitor. A value fromEnumDSSXMLLevelFlags
- Returns:
- the level of information the users want to monitor.
-
setLevel
void setLevel(int level)
Sets the level of information the users want to monitor. A value fromEnumDSSXMLLevelFlags
- Parameters:
level
- the level of information the users want to monitor.
-
reset
void reset()
Clears the count settings, max count, filter, and sort criteria.
-
getType
int getType()
Returns the sub type of the currentMonitorSource
. The type comes fromEnumWebMonitorType
.- Returns:
- the sub type of the
MonitorSource
.
-
-