B WLDF Beans and Functions Reference
The WebLogic Diagnostics Framework (WLDF) provides a set of beans and functions that can be used in collected metrics policy expressions to obtain access to common WebLogic Server JMX data sources.
- WLDF Beans Reference
WLDF includes several beans that can be used in collected metrics policy expressions to access statistics that provide information about active cluster objects, MBeans, instrument event fields, and more. - Functions Reference
WLDF includes a set of functions that can be used in policy expressions to simplify the extraction or querying of data.
WLDF Beans Reference
WLDF includes several beans that can be used in collected metrics policy expressions to access statistics that provide information about active cluster objects, MBeans, instrument event fields, and more.
- clusterRuntime
TheclusterRuntime
bean provides cluster-wide access to statistics for active clusters in the domain. - domainRuntime
ThedomainRuntime
bean provides access to MBeans registered in the Domain Runtime MBean Server. - instrumentationEvent
TheinstrumentationEvent
bean provides access to instrumentation event fields in instrumentation policy expressions. - log
Used in log policy expressions, thelog
bean provides access to log message fields. - platform
Theplatform
bean obtain values from MBeans that are exposed through the JVM's platform MBean server. - resource
Theresource
bean provides access to beans and state information within a diagnostic system module deployment. - runtime
Theruntime
bean provides access to MBeans registered in the WebLogic Server Runtime MBean Server.
Parent topic: WLDF Beans and Functions Reference
clusterRuntime
The clusterRuntime
bean provides cluster-wide access to statistics for active clusters in the domain.
Attributes
Name | Description |
---|---|
clusters |
Provides a map of beans that represent active cluster objects within the domain, keyed by cluster name. Type: |
name |
The name of the cluster. Type: |
Methods
Name | Description |
---|---|
query |
Performs a query for a set of MBean attribute values based on an Object Name pattern and an attribute expression. Parameters:
Return values: Returns a set of values matching the specified ObjectName pattern and attribute expression. These results can be fed to the wls:extract function for maintaining an in-memory history of values. |
getClusters |
Provides a map of beans that represent active cluster objects within the domain. |
getAttribute |
Obtains a single attribute value from an MBean source. Parameters:
Returns Values: Returns the attribute value matching the specified JMX ObjectName. |
Parent topic: WLDF Beans Reference
domainRuntime
The domainRuntime
bean provides access to MBeans registered in the Domain Runtime MBean Server.
Attributes
Name | Description |
---|---|
domain |
The root |
name |
The bean name. Type: |
serverRuntimes |
Returns the array of active Type: |
Methods
Name | Description |
---|---|
query |
Performs a query for a set of MBean attribute values based on an Object Name pattern and an attribute expression. Parameters:
Return values: Returns a set of values matching the specified Object Name pattern and attribute expression. These results can be fed to the wls:extract function for maintaining an in-memory history of values. |
query |
Executes a JMX query against a set of targets within the Domain Runtime MBean Server. Parameters:
Return values: Returns a set of values matching the specified Object Name pattern and attribute expression, across the specified target names. The target names can be a valid WebLogic Server instance or cluster in the domain. These results can be fed to the wls:extract function for maintaining an in-memory history of values. |
lookupServerRuntime |
Returns the Parameter:
Return values: Returns a value matching the specified Object Name pattern and attribute expression. |
getAttribute |
Obtains a single attribute value from an MBean source. Parameters:
Returns Values: Returns the attribute value matching the specified JMX ObjectName. |
Parent topic: WLDF Beans Reference
instrumentationEvent
The instrumentationEvent
bean provides access to instrumentation event fields in instrumentation policy expressions.
Attributes
Name | Description |
---|---|
timeStamp |
The timestamp value associated with the event creation. Type: |
contextId |
The diagnostic context ID associated with the instrumentation event. Type: |
txId |
The JTA transaction ID associated with the instrumentation event. Type: |
userId |
The user name associated with the request for which the instrumentation event is generated. Type: |
eventType |
The instrumentation event type. Type: |
domain |
The name of the current domain. Type: |
server |
The name of the server on which the instrumentation event occurred. Type: |
scope |
The instrumentation scope for this event. Type: |
module |
The name of the module in which the instrumentation event rule is defined. Type: |
monitor |
The instrumentation monitor that generated the instrumentation event. Type: |
fileName |
The source file name containing the code that generated the instrumentation event. Type: |
lineNumber |
The line number in the source file where the instrumentation event originated. Type: |
className |
The class name where the instrumentation event originated. Type: |
methodName |
The method name where the instrumentation event originated. Type: |
methodDesc |
The description of the method that generated the instrumentation event. Type: |
arguments |
The arguments passed into the method that generated the instrumentation event. Type: |
returnValue |
The return value for the method that generated the instrumentation event. Type: |
payload |
The payload associated with the instrumentation event. |
contextPayload |
The context payload associated with the instrumentation event. Type: |
dyeVector |
The dye vector associated with the instrumentation event. Type: |
threadName |
The name of the thread that generated the instrumentation event. Type: |
Example
The following are examples of using the instrumentationEvent
bean in an EL policy expression to access instrumentation event fields:
instrumentationEvent.monitor == 'Servlet_Around_Service' instrumentationEvent.getMonitor() == 'Servlet_Around_Service' instrumentationEvent.monitor.contains('Servlet_')
Parent topic: WLDF Beans Reference
log
Used in log policy expressions, the log
bean provides access to log message fields.
Attributes
Name | Description |
---|---|
timestamp |
The timestamp indicating when the log message was created. Type: |
formattedDate |
The formatted date string. Type: |
messageId |
The message ID of the log entry. Type: |
machineName |
The machine name on which the log entry was created. Type: |
serverName |
The server name on which the log entry was created. Type: |
threadName |
The thread name in which the logged event was created. Type: |
userId |
The ID of the user who generated the logged event. Type: |
transactionId |
The JTA transaction ID associated with the logged event. Type: |
severity |
The severity level for the log message. Type: |
severityString |
The severity string for the log message. Type: |
subsystem |
The name of the subsystem that generated the log message. Type: |
logMessage |
The message content of the log entry. Type: |
diagnosticContextId |
The diagnostic context ID associated with the logged event. Type: |
supplementalAttributes |
The name-value pairs of supplemental attributes that are included in the log entries. |
Example
The following are examples of using the log
bean in an EL policy expression to access log message fields:
log.logMessage.contains("Part of a message") log.getLogMessage().contains("Part of a message") log.messageId == "BEA-000365" log.messageId.endsWith('000365')
Parent topic: WLDF Beans Reference
platform
platform
bean obtain values from MBeans that are exposed through the JVM's platform MBean server. (Note that WebLogic Server uses the JVM's platform MBean server to contain the WebLogic run-time MBeans by default. As such, the platform MBean server provides access to platform MXBeans, WebLogic run-time MBeans, and WebLogic configuration MBeans that are on a single server instance.)
Attributes
Name | Description |
---|---|
name |
The name of the platform bean ( |
Methods
Name | Description |
---|---|
query |
Performs a query for a set of MBean attribute values based on an Object Name pattern and an attribute expression. Parameters:
Return values: A set of values matching the specified Object Name pattern and attribute expression. These results can be fed to the wls:extract function for maintaining an in-memory history of values. |
getAttribute |
Obtains a single attribute value from an MBean source. Parameters:
Returns Values: Returns the attribute value matching the specified JMX ObjectName. |
Parent topic: WLDF Beans Reference
resource
resource
bean provides access to beans and state information within a diagnostic system module deployment.Access is restricted to policies that are configured within the same diagnostic system module. That is, this bean cannot obtain access to beans and state information from policies that are configured in other diagnostic system modules. This bean is used for policy-chaining.
Attributes
Name | Description |
---|---|
watches |
A map of currently configured policies within the same diagnostic system module deployment. Type: |
Parent topic: WLDF Beans Reference
runtime
The runtime
bean provides access to MBeans registered in the WebLogic Server Runtime MBean Server.
Attributes
Name | Description |
---|---|
domain |
The root Type: |
name |
The bean name. Type: |
serverRuntime |
The root Type: |
Methods
Name | Description |
---|---|
query |
Performs a query for a set of MBean attribute values based on an Object Name pattern and an attribute expression. Parameters:
Return values: A set of values matching the specified Object Name pattern and attribute expression. These results can be fed to the wls:extract function for maintaining an in-memory history of values. |
getAttribute |
Obtains a single attribute value from an MBean source. Parameters:
Returns Values: Returns the attribute value matching the specified JMX ObjectName. |
Parent topic: WLDF Beans Reference
Functions Reference
WLDF includes a set of functions that can be used in policy expressions to simplify the extraction or querying of data.
- wls:tableChanges
Thewls:tableChanges
function takes a table of input values and generates an output table of difference vectors, one for each input vector. - wls:tableAverages
Thewls:tableAverages
function performs a matrix reduction on an input table of values, computing the average of each row in the table and producing a vector of averages, one for each row in the table. - wls:extract
Thewls:extract
function extracts a table of time series from a specified set of input sources, based on a specified sampling rate schedule and time window. - wls:average
Thewls:average
function computes an average value based on set of numeric input values. - wls:changes
Thewls:changes
method takes a vector of input values of size n and produces a vector of (at most) n-1 differences between successive values. - wls:aliveServersCount
Thewls:aliveServersCount
function is a helper function that counts the number of Managed Server instances that are in theRUNNING
state in a given cluster.
Parent topic: WLDF Beans and Functions Reference
wls:tableChanges
The wls:tableChanges
function takes a table of input values and generates an output table of difference vectors, one for each input vector.
This function throws an IllegalArgumentException
if the input either:
-
Is not a two-dimensional table
-
Contains non-numeric values
Parameters
Name | Description |
---|---|
inputTable |
The input table of numeric values, where each row is typically a time series of values from the same metric instance. |
Parent topic: Functions Reference
wls:tableAverages
wls:tableAverages
function performs a matrix reduction on an input table of values, computing the average of each row in the table and producing a vector of averages, one for each row in the table. Typically each row in the table represents a time series of values from a particular metric instance.
This function throws an IllegalArgumentException
if the input either:
-
Is not a two-dimensional table
-
Contains non-numeric values
Parameters
Name | Description |
---|---|
valuesTable |
The input table of numeric values, where each row is typically a time series of values from the same metric instance. |
Parent topic: Functions Reference
wls:extract
wls:extract
function extracts a table of time series from a specified set of input sources, based on a specified sampling rate schedule and time window. The input source can be one of the following:
-
The output from a
query()
operation from a JMX bean. For example:wls.runtime.query('com.bea:Type=ServletRuntime,*', 'ExecutionTimeAverage')
-
An EL expression, as a
String
. For example:wls.runtime.JVMRuntime.heapFreePercent
Parameters
Name | Decription |
---|---|
inputExpression |
The bean metric to be sampled. |
schedule |
The sampling rate of the metric, specified as a string, in hours, minutes, or seconds (the default). |
duration |
The required sampling window of the metric, specified as a string, in hours, minutes, or seconds (the default) |
The schedule
and duration
parameters can be specified in seconds, minutes, or hours, and are specified as strings using the following syntax:
amount[unit]
In the preceding syntax:
-
amount
represents an integer. -
[
unit
] representsseconds
,minutes
, orhours
. Each can be abbreviated to the first letter. For example:seconds
can be abbreviated tos
. -
You may include a space character between
amount
andunit
.
For example, any of the following can be used to specify five seconds:
-
5seconds
-
5 sec
-
5s
-
5snds
Parent topic: Functions Reference
wls:average
wls:average
function computes an average value based on set of numeric input values. This function returns the scalar average of the input vector, or Double.NaN
if the input is empty. If the input contains any non-numeric values, an IllegalArgumentException
is thrown.
Note:
The wls:average
function is different from the EL-provided average()
operation.
Parameters
Name | Description |
---|---|
inputValues |
A vector of numeric input values |
Parent topic: Functions Reference
wls:changes
wls:changes
method takes a vector of input values of size n and produces a vector of (at most) n-1 differences between successive values. For example, if the input vector is { 3, 2, 5, 3, 7 }
, the resulting vector is { 1, -1, 3, -2, 4 }
.
Note the following:
-
It is possible for a sequence to contain
Double.NaN
, which are skipped in subsequent computations. -
If an input value is non-numeric, an
IllegalArgumentException
is thrown.
Parameters
Name | Description |
---|---|
inputValues |
A input vector of numeric values |
Parent topic: Functions Reference
wls:aliveServersCount
wls:aliveServersCount
function is a helper function that counts the number of Managed Server instances that are in the RUNNING
state in a given cluster.Parameters
Name | Description |
---|---|
clusterName |
The name of the cluster containing the running server instances to be counted. |
Parent topic: Functions Reference