16 Configuring and Using WLDF Programmatically
As an alternative to using the WebLogic Remote Console or Fusion Middleware Control to enable, configure, and monitor the WebLogic Diagnostics Framework (WLDF), you can also use the JMX API or the WebLogic Scripting Tool (WLST) to perform these tasks programmatically.
See the following for additional information about how to develop and deploy JMX applications and to use WLST:
- How WLDF Generates and Retrieves Data
The process WLDF uses to generate and retrieve diagnostic data largely depends on how its main components are configured. - Mapping WLDF Components to Beans and Packages
When you create diagnostic system modules using the WebLogic Remote Console or WLST, WebLogic Server creates MBeans (managed beans) for each module. - Programming Tools
WLDF supports the use of multiple tools, such as WLST, JMX, and REST, for performing tasks programmatically. - WLDF Packages
WLDF provides two packages you can use to perform select operations programmatically. - Programming WLDF: Examples
WLDF provides a number of beans and packages you can use to access and modify information about a running server.
How WLDF Generates and Retrieves Data
The process WLDF uses to generate and retrieve diagnostic data largely depends on how its main components are configured.
In general, diagnostic data is generated and retrieved by WLDF components following this process:
-
The WLDF XML descriptor file settings for the Harvester, Instrumentation, Image Capture, and Policies and Actions components determine the type and amount of diagnostic data generated while a server is running.
-
The diagnostic context and instrumentation settings filter and monitor this data as it flows through the system. Data is harvested, actions are executed, events are generated, and configured notifications are sent.
-
The Archive component stores the data.
-
The Accessor component retrieves the data.
Configuration is primarily an administrative task, accomplished either through the WebLogic Remote Console or through WLST scripts. Deployable descriptor modules, XML configuration files, are the primary method for configuring diagnostic resources at both the system level (servers and clusters) and at the application level. (For information about configuring WLDF resources, see Understanding WLDF Configuration.)
Output retrieval via the Accessor component can be either an administrative or a programmatic task.
Parent topic: Configuring and Using WLDF Programmatically
Mapping WLDF Components to Beans and Packages
Table 16-1 lists the beans and packages associated with WLDF and its components. Figure 16-1 groups the beans by type.
Table 16-1 Mapping WLDF Components to Beans and Packages
Component | Beans / Packages |
---|---|
WLDF |
|
Diagnostic Image |
|
Instrumentation |
|
Diagnostic Context |
Package: weblogic.diagnostics.context |
Harvester |
|
Policies and Actions |
WLDFWatchNotificationRuntimeMBean Package: weblogic.diagnostics.watch |
Archive |
|
Accessor |
|
Runtime Control |
Figure 16-1 WLDF Configuration MBeans, Runtime MBeans, and System Module Beans

Description of "Figure 16-1 WLDF Configuration MBeans, Runtime MBeans, and System Module Beans"
Parent topic: Configuring and Using WLDF Programmatically
Programming Tools
WLDF supports the use of multiple tools, such as WLST, JMX, and REST, for performing tasks programmatically.
For example, you can use these tools to do the following:
-
Create and modify diagnostic descriptor files to configure the WLDF Harvester, Instrumentation, and Policies and Actions components at the server level.
-
Use JMX to access WLDF operations and attributes.
-
Use JMX to create custom MBeans that contain harvestable data. You can then configure the Harvester to collect that data and configure policies and actions to monitor the values.
-
Write Java programs that perform the following tasks:
-
Capture notifications using JMX listeners.
-
Capture notifications using JMS.
-
Retrieve archived data through the Accessor. (The Accessor, as are the other components, is surfaced as JMX; you can use WLST or straight JMX programming to retrieve diagnostic data.)
-
Configuration and Runtime APIs
The configuration and runtime APIs configure and monitor WLDF. Both the configuration and runtime APIs are exposed as MBeans.
-
The configuration MBeans and system module Beans create and configure WLDF resources, and determine their runtime behavior.
-
The runtime MBeans monitor the runtime state and the operations defined for the different components.
You can use the APIs to configure, activate, and deactivate data collection; to configure policies, actions, alarms, and diagnostic image captures; and to access data.
Parent topic: Programming Tools
Configuration APIs
The Configuration APIs define interfaces that are used to configure the following WLDF components:
-
Data Collectors: You can use the configuration APIs to configure and control Instrumentation, Harvesting, and Image Capture.
-
For the Instrumentation component, you can enable, disable, create, and destroy server-level instrumentation and instrumentation monitors.
Note:
The configuration APIs do not support configuration of application-level instrumentation. However, configuration changes for application-level instrumentation can be effected using Java Specification Request (JSR) 88 APIs.
-
For the Harvester component, you can add and remove types to be harvested, specify which attributes and instances of those types are to be harvested, and set the sample period for the Harvester.
-
For the Diagnostic Image Capture component, you can set the name and path of the directory in which the image capture is to be stored and the events image capture interval, that is, the time interval during which recently archived events are captured in the diagnostic image.
-
-
Policies and Actions: You can use the configuration APIs to enable, disable, create, and destroy policies and actions. You can also use the configuration APIs to:
-
Set the policy type, policy expressions, and severity for policies
-
Set alarm type and alarm reset period for actions
-
Configure a policy to execute a diagnostic image capture
-
Add and remove actions from policies
-
-
Archive: Set the archive type and the archive directory
Parent topic: Configuration and Runtime APIs
Runtime APIs
The runtime APIs define interfaces that are used to monitor the runtime state of the WLDF components. Instances of these APIs are instantiated on instances of individually managed servers. These APIs are defined as runtime MBeans, so JMX clients can easily access them.
The runtime APIs encapsulate all other runtime interfaces for the individual WLDF components. These APIs are included in the weblogic.management.runtime package.
You can use the runtime APIs to monitor the following WLDF components:
-
Data Collectors—You can use the runtime APIs to monitor the Instrumentation, Harvester, and the Image Capture components.
-
For the Instrumentation component, you can monitor joinpoint count statistics, the number of classes inspected for instrumentation monitors, the number of classes modified, and the time it takes to inspect a class for instrumentation monitors.
-
For the Harvester component, you can query the set of harvestable types, harvestable attributes, and harvestable instances (that is, the instances that are currently harvestable for specific types). And, you can also query which types, attributes, and instances are currently configured for harvesting. The sampling interval and various runtime statistics pertaining to the harvesting process are also available.
-
For the Image Capture component, you can specify the destination and lockout period for diagnostic images and initiate image captures.
-
-
Policies and Actions: You can use the runtime APIs to monitor the Policies and Actions and Archive components.
-
For the Policies and Actions component, you can reset policy alarms and monitor statistics about policy expression evaluations and policies triggered, including information about the analysis of alarms, events, log records, and harvested metrics.
-
-
Archive: You can monitor information about the archive, such as file name and archive statistics.
-
Data Accessor—You can use the runtime APIs to retrieve the diagnostic data persisted in the different archives. The runtime APIs also support data filtering by allowing you to specify a query expression to search the data from the underlying archive. You can monitor information about column type maps (a map relating column names to the corresponding type names for the diagnostic data), statistics about data record counts and timestamps, and cursors (cursors are used by clients to fetch data records).
Parent topic: Configuration and Runtime APIs
WLDF Packages
WLDF provides two packages you can use to perform select operations programmatically.
-
weblogic.diagnostics.context contains:
-
DiagnosticContextConstants, which defines the indices of dye flags supported by the WebLogic diagnostics system.
-
DiagnosticContextHelper, which provides applications limited access to the diagnostic context.
-
-
weblogic.diagnostics.watch contains:
-
JMXWatchNotification, an extended JMX notification object which includes additional information about the notification. This information is contained in the referenced WatchNotification object returned from method getExtendedInfo.
-
WatchNotification, which defines an action for a policy.
-
Parent topic: Configuring and Using WLDF Programmatically
Programming WLDF: Examples
In addition, see the WLST and JMX examples in WebLogic Scripting Tool Examples.
- Example: DiagnosticContextExample.java
- Example: HarvesterMonitor.java
- Example: JMXAccessorExample.java
Parent topic: Configuring and Using WLDF Programmatically
Example: DiagnosticContextExample.java
The following example uses the DiagnosticContextHelper class from the weblogic.diagnostics.context package to get and set the value of the DYE_0 flag. (For information about diagnostic contexts, see Configuring the DyeInjection Monitor to Manage Diagnostic Contexts.)
To compile and run the program:
Example 16-1 Example: DiagnosticContextExample.java
package weblogic.diagnostics.examples; import weblogic.diagnostics.context.DiagnosticContextHelper; public class DiagnosticContextExample { public static void main(String args[]) throws Exception { System.out.println("ContextId=" + DiagnosticContextHelper.getContextId()); System.out.println("isDyedWith(DYE_0)=" + DiagnosticContextHelper.isDyedWith(DiagnosticContextHelper.DYE_0)); DiagnosticContextHelper.setDye(DiagnosticContextHelper.DYE_0, true); System.out.println("isDyedWith(DYE_0)=" + DiagnosticContextHelper.isDyedWith(DiagnosticContextHelper.DYE_0)); } }
Parent topic: Programming WLDF: Examples
Example: HarvesterMonitor.java
The HarvesterMonitor program uses the Harvester JMX notification to identify when a harvest cycle has occurred. It then retrieves the new values using the Accessor. All access is performed through JMX.
For information about the Harvester component, see Configuring the Harvester for Metric Collection.
A description of notification listeners and the HarvesterMonitor.java code are provided in the following sections:
Notification Listeners
Notification listeners provide an appropriate implementation for a particular transport medium. For example, SMTP notification listeners provide the mechanism to establish an SMTP connection with a mail server and send an e-mail with the notification instance that it receives. JMX, SNMP, JMS and other types of listeners provide their respective implementations as well.
Note:
You can develop plug-ins that propagate events generated by the WebLogic Diagnostics Framework using transport mediums other than SMTP, JMX, SNMP, or JMS. One approach is to use the JMX NotificationListener interface to implement an object, and then propagate the notification according to the requirements of the selected transport medium.
Table 16-2 describes each notification listener type that is provided with WebLogic Server and the relevant configuration settings for each type.
Table 16-2 Notification Listener Types
Notification Medium | Description | Configuration Parameter Requirements |
---|---|---|
JMS |
Propagated via JMS Message queues or topics. |
Required: Destination JNDI name. Optional: Connection factory JNDI name (use the default JMS connection factory if not present). |
JMX |
Propagated via standard JMX notifications. |
None required. Uses predefined singleton for posting the event. |
SMTP |
Propagated via regular e-mail. |
Required: MailSession JNDI name and Destination e-mail. Optional: Subject and body (if not specified, use default) |
SNMP |
Propagated via SNMP traps and the WebLogic Server SNMP Agent. |
None required, but the SNMPTrapDestination MBean must be defined in the WebLogic SNMP agent. |
By default, all notifications executed from policies are stored in the server log file in addition to being executed through the configured medium.
Parent topic: Example: HarvesterMonitor.java
HarvesterMonitor.java
To compile and run the HarvesterMonitor program:
Example 16-2 Example: HarvesterMonitor.java
package weblogic.diagnostics.examples; import weblogic.management.mbeanservers.runtime.RuntimeServiceMBean; import javax.management.*; import javax.management.remote.*; import javax.naming.Context; import java.util.*; public class HarvesterMonitor { private static String accessorRuntimeMBeanName; private static ObjectName accessorRuntimeMBeanObjectName; private static String harvRuntimeMBeanName; private static ObjectName harvRuntimeMBeanObjectName; private static MBeanServerConnection rmbs; private static ObjectName getObjectName(String objectNameStr) { try { return new ObjectName(getCanonicalName(objectNameStr)); } catch (RuntimeException x) { throw x; } catch (Exception x) { x.printStackTrace(); throw new RuntimeException(x); } } private static String getCanonicalName(String objectNameStr) { try { return new ObjectName(objectNameStr).getCanonicalName(); } catch (RuntimeException x) { throw x; } catch (Exception x) { x.printStackTrace(); throw new RuntimeException(x); } } private static String serverName; private static int port; private static String userName; private static String password; private static ArrayList typesToMonitor = null; public static void main(String[] args) throws Exception { if (args.length < 4) { System.out.println( "Usage: java weblogic.diagnostics.harvester.HarvesterMonitor " + "<serverName> <port> <userName> <password> [<types>]" + weblogic.utils.PlatformConstants.EOL + " where <types> (optional) is a comma-separated list " + "of types to monitor."); System.exit(1); } serverName = args[0]; port = Integer.parseInt(args[1]); userName = args[2]; password = args[3]; accessorRuntimeMBeanName = getCanonicalName( "com.bea:ServerRuntime=" + serverName + ",Name=HarvestedDataArchive,Type=WLDFDataAccessRuntime" + ",WLDFAccessRuntime=Accessor,WLDFRuntime=WLDFRuntime"); accessorRuntimeMBeanObjectName = getObjectName(accessorRuntimeMBeanName); harvRuntimeMBeanName = getCanonicalName( "com.bea:ServerRuntime=" + serverName + ",Name=WLDFHarvesterRuntime,Type=WLDFHarvesterRuntime" + ",WLDFRuntime=WLDFRuntime"); harvRuntimeMBeanObjectName = getObjectName(harvRuntimeMBeanName); if (args.length > 4) { String typesStr = args[4]; typesToMonitor = new ArrayList(); int index; while ((index = typesStr.indexOf(",")) > 0) { String typeName = typesStr.substring(0,index).trim(); typesToMonitor.add(typeName); typesStr = typesStr.substring(index+1); } typesToMonitor.add(typesStr.trim()); } rmbs = getRuntimeMBeanServerConnection(); new HarvesterMonitor().new HarvestCycleHandler(); while(true) {Thread.sleep(100000);} } static protected String JNDI = "/jndi/"; static public MBeanServerConnection getRuntimeMBeanServerConnection() throws Exception { JMXServiceURL serviceURL; serviceURL = new JMXServiceURL("t3", "localhost", port, JNDI + RuntimeServiceMBean.MBEANSERVER_JNDI_NAME); System.out.println("ServerName=" + serverName); System.out.println("URL=" + serviceURL); Hashtable h = new Hashtable(); h.put(Context.SECURITY_PRINCIPAL, userName); h.put(Context.SECURITY_CREDENTIALS, password); h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES, "weblogic.management.remote"); JMXConnector connector = JMXConnectorFactory.connect(serviceURL,h); return connector.getMBeanServerConnection(); } class HarvestCycleHandler implements NotificationListener { // used to track harvest cycles private int timestampIndex; private int domainIndex; private int serverIndex; private int typeIndex; private int instNameIndex; private int attrNameIndex; private int attrTypeIndex; private int attrValueIndex; long lastSampleTime = System.currentTimeMillis(); HarvestCycleHandler() throws Exception{ System.out.println("Harvester monitor started..."); try { setUpRecordIndices(); rmbs.addNotificationListener(harvRuntimeMBeanObjectName, this, null, null); } catch (javax.management.InstanceNotFoundException x) { System.out.println("Cannot find JMX data. " + "Is the server name correct?"); System.exit(1); } } private void setUpRecordIndices() throws Exception { Map columnIndexMap = (Map)rmbs.getAttribute( accessorRuntimeMBeanObjectName, "ColumnIndexMap"); timestampIndex = ((Integer)columnIndexMap.get("TIMESTAMP")).intValue(); domainIndex = ((Integer)columnIndexMap.get("DOMAIN")).intValue(); serverIndex = ((Integer)columnIndexMap.get("SERVER")).intValue(); typeIndex = ((Integer)columnIndexMap.get("TYPE")).intValue(); instNameIndex = ((Integer)columnIndexMap.get("NAME")).intValue(); attrNameIndex = ((Integer)columnIndexMap.get("ATTRNAME")).intValue(); attrTypeIndex = ((Integer)columnIndexMap.get("ATTRTYPE")).intValue(); attrValueIndex = ((Integer)columnIndexMap.get("ATTRVALUE")).intValue(); } public synchronized void handleNotification(Notification notification, Object handback) { System.out.println("\n------------------------------------------"); long thisSampleTime = System.currentTimeMillis()+1; try { String lastTypeName = null; String lastInstName = null; String cursor = (String)rmbs.invoke(accessorRuntimeMBeanObjectName, "openCursor", new Object[]{new Long(lastSampleTime), new Long(thisSampleTime), null}, new String[]{ "java.lang.Long", "java.lang.Long", "java.lang.String" } ); while (((Boolean)rmbs.invoke(accessorRuntimeMBeanObjectName, "hasMoreData", new Object[]{cursor}, new String[]{"java.lang.String"})).booleanValue()) { Object[] os = (Object[])rmbs.invoke(accessorRuntimeMBeanObjectName, "fetch", new Object[]{cursor}, new String[]{"java.lang.String"}); for (int i = 0; i < os.length; i++) { Object[] values = (Object[])os[i]; String typeName = (String)values[typeIndex]; String instName = (String)values[instNameIndex]; String attrName = (String)values[attrNameIndex]; if (!typeName.equals(lastTypeName)) { if (typesToMonitor != null && !typesToMonitor.contains(typeName)) continue; System.out.println("\nType " + typeName); lastTypeName = typeName; } if (!instName.equals(lastInstName)) { System.out.println("\n Instance " + instName); lastInstName = instName; } Object attrValue = values[attrValueIndex]; System.out.println(" - " + attrName + "=" + attrValue); } } lastSampleTime = thisSampleTime; } catch (Exception e) {e.printStackTrace();} } } }
Example 16-3 contains sample output from the HarvesterMonitor
program:
Example 16-3 Sample Output from HarvesterMonitor
ServerName=myserver URL=service:jmx:t3://localhost:7001/jndi/weblogic.management.mbeanservers.runtime Harvester monitor started... ------------------------------------------------------ Type weblogic.management.runtime.WLDFHarvesterRuntimeMBean Instance com.bea:Name=WLDFHarvesterRuntime,ServerRuntime=myserver,Type=WLDFHarvesterRuntime,WLDFRuntime=WLDFRuntime - TotalSamplingTime=202048863 - CurrentSnapshotElapsedTime=1839619 Type weblogic.management.runtime.ServerRuntimeMBean Instance com.bea:Name=myserver,Type=ServerRuntime - RestartRequired=false - ListenPortEnabled=true - ActivationTime=1118319317071 - ServerStartupTime=40671 - ServerClasspath= [deleted long classpath listing] - CurrentMachine= - SocketsOpenedTotalCount=1 - State=RUNNING - RestartsTotalCount=0 - AdminServer=true - AdminServerListenPort=7001 - ClusterMaster=false - StateVal=2 - CurrentDirectory=C:\testdomain\. - AdminServerHost=10.40.8.123 - OpenSocketsCurrentCount=1 - ShuttingDown=false - SSLListenPortEnabled=false - AdministrationPortEnabled=false - AdminServerListenPortSecure=false - Registered=true
Parent topic: Example: HarvesterMonitor.java
Example: JMXAccessorExample.java
The following example program uses JMX to print log entries to standard out. All access is performed through JMX. (For information about the Accessor component, see Accessing Diagnostic Data With the Data Accessor.)
To compile and run the program:
Example 16-4 JMXAccessorExample.java
package weblogic.diagnostics.examples;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Hashtable;
import java.util.Iterator;
import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;
public class JMXAccessorExample {
private static final String JNDI = "/jndi/";
public static void main(String[] args) {
try {
if (args.length != 2) {
System.err.println("Incorrect invocation. Correct usage is:\n" +
"java weblogic.diagnostics.examples.JMXAccessorExample " +
"<logicalName> <query>");
System.exit(1);
}
String logicalName = args[0];
String query = args[1];
MBeanServerConnection mbeanServerConnection =
lookupMBeanServerConnection();
ObjectName service = new
ObjectName(weblogic.management.mbeanservers.runtime.RuntimeServiceMBean.OBJECT_NAME);
ObjectName serverRuntime =
(ObjectName) mbeanServerConnection.getAttribute(service,
"ServerRuntime");
ObjectName wldfRuntime =
(ObjectName) mbeanServerConnection.getAttribute(serverRuntime,
"WLDFRuntime");
ObjectName wldfAccessRuntime =
(ObjectName) mbeanServerConnection.getAttribute(wldfRuntime,
"WLDFAccessRuntime");
ObjectName wldfDataAccessRuntime =
(ObjectName) mbeanServerConnection.invoke(wldfAccessRuntime,
"lookupWLDFDataAccessRuntime", new Object[] {logicalName},
new String[] {"java.lang.String"});
String cursor =
(String) mbeanServerConnection.invoke(wldfDataAccessRuntime,
"openCursor", new Object[] {query},
new String[] {"java.lang.String"});
int fetchedCount = 0;
do {
Object[] rows =
(Object[]) mbeanServerConnection.invoke(wldfDataAccessRuntime,
"fetch", new Object[] {cursor},
new String[] {"java.lang.String"});
fetchedCount = rows.length;
for (int i=0; i<rows.length; i++) {
StringBuffer sb = new StringBuffer();
Object[] cols = (Object[]) rows[i];
for (int j=0; j<cols.length; j++) {
sb.append("Index " + j + "=" + cols[j].toString() + " ");
}
System.out.println("Found row = " + sb.toString());
}
} while (fetchedCount > 0);
mbeanServerConnection.invoke(wldfDataAccessRuntime,
"closeCursor", new Object[] {cursor},
new String[] {"java.lang.String"});
} catch(Throwable th) {
th.printStackTrace();
System.exit(1);
}
}
private static MBeanServerConnection lookupMBeanServerConnection ()
throws Exception {
// construct JMX service URL
JMXServiceURL serviceURL;
serviceURL = new JMXServiceURL("iiop", "localhost", 7001,
JNDI + "weblogic.management.mbeanservers.runtime");
// Specify the user, password, and WebLogic provider package
Hashtable h = new Hashtable();
h.put(Context.SECURITY_PRINCIPAL,"weblogic");
h.put(Context.SECURITY_CREDENTIALS,"password");
h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
"weblogic.management.remote");
// Get jmx connector
JMXConnector connector = JMXConnectorFactory.connect(serviceURL,h);
// return MBean server connection class
return connector.getMBeanServerConnection();
} // End - lookupMBeanServerConnection
}
Parent topic: Programming WLDF: Examples