SettableBean
, WLDFBean
public interface WLDFWatchBean extends WLDFBean
Defines policies and actions.
Note: As of WebLogic Server 12.2.1, the terms watch and notification are replaced by policy and action, respectively. However, the definition of these terms has not changed.
Modifier and Type | Field | Description |
---|---|---|
static java.lang.String |
AUTO_RESET_ALARM_TYPE |
Static constant for the automatic alarm type.
|
static java.lang.String |
DOMAIN_LOG_RULE_TYPE |
Static constant for the log rule type.
|
static java.lang.String |
EL_LANGUAGE_TYPE |
Static constant for using Java EL expressions for policy expressions.
|
static java.lang.String |
EVENT_DATA_RULE_TYPE |
Static constant for the event data rule type.
|
static java.lang.String |
HARVESTER_RULE_TYPE |
Static constant for the harvester rule type.
|
static java.lang.String |
LOG_RULE_TYPE |
Static constant for the log rule type.
|
static java.lang.String |
MANUAL_RESET_ALARM_TYPE |
Static constant for the manual alarm type.
|
static java.lang.String |
NONE_ALARM_TYPE |
Static constant for the alarm type none.
|
static java.lang.String |
WLDF_LANGUAGE_TYPE |
Static constant for the built-in WLDF expression language type (deprecated).
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
addNotification(WLDFNotificationBean notification) |
Adds an action to this policy.
|
int |
getAlarmResetPeriod() |
For automatic alarms, the time period, in milliseconds, to
wait after the policy evaluates to
true before the
alarm is automatically reset. |
java.lang.String |
getAlarmType() |
The alarm type for the policy: manual or automatic.
|
java.lang.String |
getExpressionLanguage() |
Returns the expression language type used by the policy, either
"EL" or "WLDF" (deprecated).
|
WLDFNotificationBean[] |
getNotifications() |
The actions enabled for this policy.
|
java.lang.String |
getRuleExpression() |
The expression used to evaluate the policy.
|
java.lang.String |
getRuleType() |
The expression type for the policy:
HARVESTER_RULE_TYPE refers to harvested data,
LOG_RULE_TYPE refers to server log entry data,
DOMAIN_LOG_RULE_TYPE refers to domain log entry data, and
EVENT_DATA_RULE_TYPE refers to instrumentation event
data. |
WLDFScheduleBean |
getSchedule() |
Defines the evaluation frequency for Harvester type rules, in seconds.
|
java.lang.String |
getSeverity() |
The severity level of the actions sent when this policy
evaluates to
true . |
boolean |
isEnabled() |
Specifies whether this policy is enabled.
|
boolean |
removeNotification(WLDFNotificationBean notification) |
Removes an action from this policy.
|
void |
setAlarmResetPeriod(int alarmResetPeriod) |
Sets the value of the AlarmResetPeriod attribute.
|
void |
setAlarmType(java.lang.String alarmType) |
Sets the value of the AlarmType attribute.
|
void |
setEnabled(boolean enabled) |
Sets the value of the Enabled attribute.
|
void |
setExpressionLanguage(java.lang.String languageType) |
Sets the expression language type to use for the policy, either
one of "EL" or "WLDF" (deprecated)
|
void |
setNotifications(WLDFNotificationBean[] notifications) |
Sets the value of the Notifications attribute.
|
void |
setRuleExpression(java.lang.String ruleExpression) |
Sets the value of the RuleExpression attribute.
|
void |
setRuleType(java.lang.String ruleType) |
Sets the value of the RuleType attribute.
|
void |
setSeverity(java.lang.String severity) |
Sets the value of the Severity attribute.
|
static final java.lang.String WLDF_LANGUAGE_TYPE
Static constant for the built-in WLDF expression language type (deprecated).
static final java.lang.String EL_LANGUAGE_TYPE
Static constant for using Java EL expressions for policy expressions.
static final java.lang.String HARVESTER_RULE_TYPE
Static constant for the harvester rule type.
static final java.lang.String DOMAIN_LOG_RULE_TYPE
Static constant for the log rule type.
static final java.lang.String LOG_RULE_TYPE
Static constant for the log rule type.
static final java.lang.String EVENT_DATA_RULE_TYPE
Static constant for the event data rule type.
static final java.lang.String MANUAL_RESET_ALARM_TYPE
Static constant for the manual alarm type.
static final java.lang.String AUTO_RESET_ALARM_TYPE
Static constant for the automatic alarm type.
static final java.lang.String NONE_ALARM_TYPE
Static constant for the alarm type none.
boolean isEnabled()
Specifies whether this policy is enabled.
true
if the policy is enabled, false
otherwisevoid setEnabled(boolean enabled)
Sets the value of the Enabled attribute.
enabled
- true
to enable the policy, false
to disable itisEnabled()
java.lang.String getRuleType()
The expression type for the policy:
HARVESTER_RULE_TYPE
refers to harvested data,
LOG_RULE_TYPE
refers to server log entry data,
DOMAIN_LOG_RULE_TYPE
refers to domain log entry data, and
EVENT_DATA_RULE_TYPE
refers to instrumentation event
data. The default type is HARVESTER_RULE_TYPE
.
For information on policy expressions, see "Using the Diagnostics Framework for Oracle WebLogic Server" at http://docs.oracle.com/middleware/home/index.html.
void setRuleType(java.lang.String ruleType)
Sets the value of the RuleType attribute.
ruleType
- the type of expression for the policy: Harvester, Log or EventDatagetRuleType()
java.lang.String getRuleExpression()
The expression used to evaluate the policy.
void setRuleExpression(java.lang.String ruleExpression)
Sets the value of the RuleExpression attribute.
ruleExpression
- the expression used to evaluate the policygetRuleExpression()
java.lang.String getExpressionLanguage()
void setExpressionLanguage(java.lang.String languageType)
lang
- The expression language to use for the policygetExpressionLanguage()
java.lang.String getSeverity()
The severity level of the actions sent when this policy
evaluates to true
. When set, this level overrides
the default value provided in the parent MBean. However, if no
severity level is set (null), the value provided in the parent MBean
is returned.
The severity levels are the same levels used by the logging
framework and the Severities
class.
void setSeverity(java.lang.String severity)
Sets the value of the Severity attribute.
severity
- the severity of the actions sent when this policy evaluates to truegetSeverity()
java.lang.String getAlarmType()
The alarm type for the policy: manual or automatic. The default alarm type is manual.
Once a manually set alarm has triggered, it must be reset through the WebLogic Server Administration Console or programmatically before it can trigger again. An automatic reset alarm will reset after the specified time period has elapsed.
void setAlarmType(java.lang.String alarmType)
Sets the value of the AlarmType attribute.
alarmType
- the reset type of this policy, either manual or automaticgetAlarmType()
WLDFScheduleBean getSchedule()
Defines the evaluation frequency for Harvester type rules, in seconds.
The default frequency is 5 minutes (300 seconds), minimum is 5 seconds.
WLDFScheduleBean
int getAlarmResetPeriod()
For automatic alarms, the time period, in milliseconds, to
wait after the policy evaluates to true
before the
alarm is automatically reset.
The default reset period is 60000 milliseconds, which is equivalent to 60 seconds.
void setAlarmResetPeriod(int alarmResetPeriod)
Sets the value of the AlarmResetPeriod attribute.
alarmResetPeriod
- the number of milliseconds to wait before the alarm is automatically resetgetAlarmResetPeriod()
WLDFNotificationBean[] getNotifications()
The actions enabled for this policy.
void setNotifications(WLDFNotificationBean[] notifications)
Sets the value of the Notifications attribute.
getNotifications()
boolean addNotification(WLDFNotificationBean notification)
Adds an action to this policy.
action
- boolean removeNotification(WLDFNotificationBean notification)
Removes an action from this policy.
action
-