SettableBean
, WLDFBean
public interface WLDFInstrumentationMonitorBean extends WLDFBean
This interface defines a diagnostic monitor, which is applied at the specified locations within the included classes in an instrumentation scope.
Modifier and Type | Method | Description |
---|---|---|
java.lang.String[] |
getActions() |
The diagnostic actions attached to this monitor.
|
java.lang.String |
getDescription() |
Optional description of this monitor.
|
java.lang.String |
getDyeMask() |
The dye mask for all diagnostic actions associated with this
monitor.
|
java.lang.String[] |
getExcludes() |
Pattern expressions for classes that will be excluded
for this instrumentation monitor.
|
java.lang.String[] |
getIncludes() |
Pattern expressions for classes that are included for this
instrumentation monitor.
|
java.lang.String |
getLocationType() |
Attached actions are applied at selected locations:
before , after , or around
pointcuts. |
java.lang.String |
getPointcut() |
The pointcut expression for this monitor.
|
java.lang.String |
getProperties() |
Properties for this monitor.
|
boolean |
isDyeFilteringEnabled() |
Specifies whether dye filtering is enabled for the diagnostic
actions associated with this monitor.
|
boolean |
isEnabled() |
Specifies whether the monitor and its associated diagnostics
actions are enabled.
|
void |
setActions(java.lang.String[] actions) |
Sets the value of the Actions attribute.
|
void |
setDescription(java.lang.String description) |
Sets the value of the Description attribute.
|
void |
setDyeFilteringEnabled(boolean enable) |
Sets the value of the DyeFilteringEnabled attribute.
|
void |
setDyeMask(java.lang.String dyeMask) |
Set the value of the DyeMask attribute.
|
void |
setEnabled(boolean value) |
Sets the value of the Enabled attribute.
|
void |
setExcludes(java.lang.String[] expr) |
Sets the value of the Excludes attribute.
|
void |
setIncludes(java.lang.String[] expr) |
Sets the value of the Includes attribute.
|
void |
setLocationType(java.lang.String locationType) |
Sets the value of the LocationType attribute.
|
void |
setPointcut(java.lang.String pointcut) |
Sets the value of the Pointcut attribute.
|
void |
setProperties(java.lang.String properties) |
Sets the value of the Properties attribute.
|
java.lang.String getDescription()
Optional description of this monitor.
void setDescription(java.lang.String description)
Sets the value of the Description attribute.
getDescription()
boolean isEnabled()
Specifies whether the monitor and its associated diagnostics actions are enabled.
void setEnabled(boolean value)
Sets the value of the Enabled attribute.
value
- A boolean value that indicates whether this monitor and its associated diagnostics actions are enabled.isEnabled()
java.lang.String getDyeMask()
The dye mask for all diagnostic actions associated with this monitor.
void setDyeMask(java.lang.String dyeMask)
Set the value of the DyeMask attribute.
dyeMask
- The dye mask to be applied to all diagnostic action within the scopegetDyeMask()
boolean isDyeFilteringEnabled()
Specifies whether dye filtering is enabled for the diagnostic actions associated with this monitor.
void setDyeFilteringEnabled(boolean enable)
Sets the value of the DyeFilteringEnabled attribute.
enable
- If true, enable dye filtering; disable otherwise.isDyeFilteringEnabled()
java.lang.String getProperties()
Properties for this monitor. Properties are name=value pairs,
one pair per line. For example,
USER1=foo\nADDR1=127.0.0.1
.
void setProperties(java.lang.String properties)
Sets the value of the Properties attribute.
properties
- New properties of the monitorgetProperties()
java.lang.String[] getActions()
The diagnostic actions attached to this monitor. Actions are
relevant only for delegating and custom monitors. Valid actions
are: TraceAction
,
DisplayArgumentsAction
,
MethodInvocationStatisticsAction
,
MethodMemoryAllocationStatisticsAction
,
StackDumpAction
,
ThreadDumpAction
,
TraceElapsedTimeAction
, and
TraceMemoryAllocationAction
.
void setActions(java.lang.String[] actions)
Sets the value of the Actions attribute.
actions
- Array of action names to be attached to the delegating/custom monitorgetActions()
java.lang.String getLocationType()
Attached actions are applied at selected locations:
before
, after
, or around
pointcuts. This is relevant only for custom monitors. (A location
where diagnostic code is added is called a diagnostic
joinpoint. A set of joinpoints, identified by an expression, is
called a pointcut.)
Once a location type is set, it cannot be changed.
void setLocationType(java.lang.String locationType)
Sets the value of the LocationType attribute.
locationType
- The location type for the actions attached to this monitor.getLocationType()
java.lang.String getPointcut()
The pointcut expression for this monitor. (A location where diagnostic code is added is called a diagnostic joinpoint. A set of joinpoints, identified by an expression, is called a pointcut.)
Setting a pointcut expression is relevant only for custom monitors; for standard and delegating monitors, this definition is implicitly defined by WLDF.
Once a pointcut expression is set, it cannot be changed.
void setPointcut(java.lang.String pointcut)
Sets the value of the Pointcut attribute.
pointcut
- Pointcut expression for the monitorgetPointcut()
java.lang.String[] getIncludes()
Pattern expressions for classes that are included for this instrumentation monitor. If specified, only included classes will be instrumented with this monitor. If not specified, all classes loaded within the application and which are not explicitly excluded are eligible for instrumentation with this monitor.
A pattern can end with an asterisk (*
), in which case
it will match with all classes whose fully qualified classname starts
with the prefix of the pattern. For example, weblogic.rmi.*
will match with all classes in weblogic.rmi
and its
subpackages.
getExcludes()
void setIncludes(java.lang.String[] expr)
Sets the value of the Includes attribute.
expr
- String array of expressions specifying the classes to be included in the instrumentationgetIncludes()
java.lang.String[] getExcludes()
Pattern expressions for classes that will be excluded for this instrumentation monitor. If specified, classes matching given patterns will not be instrumented with this monitor.
getIncludes()
void setExcludes(java.lang.String[] expr)
Sets the value of the Excludes attribute.
expr
- String array containing the pattern expressions for the excluded classesgetExcludes()