Skip navigation.

Using WebLogic JRockit 8.1 SDK

  Previous Next vertical dots separating previous/next from contents/index/pdf Contents Index View as PDF   Get Adobe Reader

Using the WebLogic JRockit Management Console

The JRockit Management Console can be used to monitor and control running instances of WebLogic JRockit JVM. It provides real-time information about the running application's characteristics, which can be used both during development—for example, to find where in an application's life cycle it consumes more memory—and in a deployed environment—for example, to monitor the system health of a running application server.

This section includes information on the following subjects:

 


Console Overhead

The extra cost of running the JRockit Management Console against a running WebLogic JRockit JVM is very small and can almost be disregarded. This provides for a very low cost monitoring and profiling of your application.

Note: It is not recommended that you run the Management Console on the same machine as the VM you are monitoring. If you run the Console on the same machine as the WebLogic JRockit you are monitoring, the Management Console GUI will steal valuable resources from the application running on the JVM and you risk performance degradation as a result.

 


Starting the Console

Starting the Management Console is a two-step process:

Additionally, you might want to also complete these tasks as part of the start-up process:

Enable the Management Server

Before the Management Console can connect to WebLogic JRockit JVM, the management server in the VM needs to be started. The server is disabled by default. To enable the management server, start WebLogic JRockit JVM with the -Xmanagement option:

-Xmanagement

Start the JRockit Management Console

Start the JRockit Management Console from the command prompt by typing:

console

Note: Before starting the Management Console, you must specify the JRE path and the classpath to the .jar file.

You can also start the Management Console without using the launcher. At the command line, enter:

java -jar <jrockit-install-directory>/console/ManagementConsole.jar

Starting the Management Server with a Security Manager

If you try to start the management server (-Xmanagement option) with a security manager running (-Djava.security.manager option) the management server might not start and you will get error messages such as the following:

"ERROR: failed to initialize class com.jrockit.management.rmp.
RmpSocketListener."

To allow the management server to run under a security manager, add the text shown in Listing 6-1 to your policy file. The standard location of the policy file is:

For more information on policy files please refer to:

http://java.sun.com/products/jdk/1.2/docs/guide/security/PolicyFiles.html

Listing 6-1 Code for Starting the Management Server with a Security Manager

/* --- Permissions for the JRockit management Server --- */
/* TODO 1: Locate the installed managementserver.jar in JAVA_HOME/jre/lib */
grant codeBase "file:C:/MY_JAVA_HOME/jre/lib/managementserver.jar" {

/* TODO 2: Add permissions for your console client to connect. */
permission java.net.SocketPermission "my-console-client.com", "accept,
resolve";
   /* TODO 3: Add permissions for the management server to listen for
connections. */
permission java.net.SocketPermission "localhost:7090", "listen,
resolve";
   /* Add permissions for management server standard operations.  */
permission com.bea.jvm.ManagementPermission "createInstance";
permission java.lang.RuntimePermission "modifyThreadGroup";
permission java.lang.RuntimePermission "modifyThread";
permission java.lang.RuntimePermission "shutdownHooks";
permission java.util.PropertyPermission "*", "read, write";
};

Set the Port

When WebLogic JRockit JVM is started with the -Xmanagement option set—and provided the VM is not running in "quiet" mode—it should print out a short message following the command line indicating that the management server is running and which port it is using. You can optionally choose which port to use by setting, as a command line argument, the port number in the port property:

java -Djrockit.managementserver.port=<portnumber> 

The default port the management server uses to connect is 7090. It is strongly recommended that you block this port in your firewall, otherwise unauthorized users might access the management server.

Change the Number of Connections

You can change the number of connections allowed to the server by setting the maxconnect property:

-Djrockit.managementserver.maxconnect=<maximum number of connections>

The default limit is four concurrent connections. While this should be enough for most users, you can change it, if necessary. The connection limit protects against Denial of Service (DoS) attacks by intruders.

 


Parts of the Console

When the JRockit Management Console window appears, the console has started, as shown in Figure 6-1:


 

Figure 6-1 WebLogic JRockit JVM Management Console

WebLogic JRockit JVM Management Console


 

The JRockit Management Console window is divided into two panes: a connection browser tree in the left pane (Figure 6-2) and a tabbed interface in the right pane (Figure 6-3).

Figure 6-2 Connection Browser

Connection Browser


 

Figure 6-3 Information Tabs (Administrator Mode)

Information Tabs (Administrator Mode)


 

The first tab shows an Overview of information for the selected WebLogic JRockit JVM connection(s) (as highlighted in the connection browser pane). The other tabs contain detailed information about different areas of the VM, as will be described in Information Tabs.

Figure 6-3 shows the information tabs available in the console's Administrator operation mode. When the console is in the Developer mode, additional tabs appear, as shown in Figure 6-4. These two operation modes are described in Setting the Operation Mode.

Figure 6-4 Information Tabs (Developer Mode)

Information Tabs (Developer Mode)


 

The console includes a toolbar that contains command buttons for some of the menu options (Figure 6-5). To toggle the Toolbar on or off, on the View menu select Tool Bar.

Figure 6-5 Management Console Toolbar

Management Console Toolbar


 

The status bar (Figure 6-6) at the bottom of the window displays informational messages and tool tips when you hover over a toolbar button or select something in a menu. It also indicates whether the JRockit Management Console is connected to one or several WebLogic JRockit JVM implementations or not. To toggle the Status Bar on or off, on the View menu, select Status Bar.

Figure 6-6 Status Bar

Status Bar


 

 


Setting Up the Console

Once the console is running, you will need to configure it to suit your needs. Configuring—or "setting up"—the console includes these tasks:

Making Connections

The connection browser displays a collection of saved connections to WebLogic JRockit JVM organized in folders. If necessary, you can add your own folders and connection nodes to the tree structure. Active connections currently connected to a running VM are indicated by a green icon; those disconnected are indicated by a red icon.

Creating a New Folder

To create your own folder in the connection browser, do the following:

  1. Select an existing folder (for example, Connections) for which you want to create a subfolder.
  2. Open the New Folder dialog box by doing one of the following:
  3. The Add new folder dialog box (Figure 6-7) appears:

    Figure 6-7 Add New Folder Dialog Box

    Add New Folder Dialog Box


     
  4. Enter the name of the new folder in the text field and click OK.
  5. The new folder will appear in the connection browser.

Creating a New Connection

To create a new connection to WebLogic JRockit JVM in the connection browser, do the following:

  1. Select the folder in which the connection should be placed
  2. Open the New Connection dialog box by doing one of the following:
  3. The Add new connection dialog box (Figure 6-8) appears:

    Figure 6-8 Add New Connection Dialog Box

    Add New Connection Dialog Box


     
  4. Enter the name of the server, the port and the new connection in the appropriate text fields or retain the default values. Then, select or deselect Connect now and click Add Connection.

Connecting a Connection to WebLogic JRockit JVM

To connect to WebLogic JRockit, do the following:

  1. Select the WebLogic JRockit JVM connection to connect, a subfolder of connections to connect, or the folder Connections to connect all existing connections.
  2. Do one of the following to connect the selected connection(s):
  3. When the connection is made, the status bar will read "Connected" and activity on the console will commence.

Disconnecting a Connection from WebLogic JRockit JVM

To disconnect a connection from WebLogic JRockit JVM, do the following:

  1. Select the WebLogic JRockit JVM connection to connect, a subfolder of connections to connect, or the folder Connections to disconnect all existing connections.
  2. Do one of the following to disconnect the selected connection(s):
  3. The connection will be lost and the status bar will indicate that you've been disconnected. All activity on the console will cease.

Renaming a Connection or Folder

To rename a connection or a folder of connection, do the following:

  1. Select the WebLogic JRockit JVM connection or folder to rename.
  2. Do one of the following to rename the selected connection or folder:
  3. The Folder properties dialog box (Figure 6-9) appears:

    Figure 6-9 Folder Properties Dialog Box

    Folder Properties Dialog Box


     
  4. Enter a new name into the text field and click OK

Note: If you select the last option (click the item label), the Folder properties dialog box will not appear. Instead, the label itself will be enabled for direct editing. Simply type the new name over the old and click away from the label or press Enter.

Removing a Connection or Folder

To remove a connection or folder, do the following:

  1. Select a connection or a subfolder to remove.
  2. Do one of the following to remove the selected item:
  3. Click Yes on the confirmation dialog box that appears.
  4. The selected item disappears from the connection browser.

Hiding Disconnected Connections

Sometimes you might want to show just information about active WebLogic JRockit JVM connections. To hide information about disconnected connections, do one of the following:

To show the information about disconnected connections again, simply deselect Hide Disconnected in same way that you made the selection.

Enabling Console Settings

This section describes how to enable various JRockit Management Console settings.

Setting the Operation Mode

The Management Console can be run in two different operating modes:

To set the operation mode, do the following:

  1. From the Tools menu, select Preferences...
  2. The Preferences dialog box (Figure 6-10) appears:

    Figure 6-10 Preferences Menu (General Tab)

    Preferences Menu (General Tab)


     
  3. Click the Mode of operation drop-down control to display the list of operation modes (Figure 6-11).
  4. Figure 6-11 List of Operation Modes

    List of Operation Modes


     
  5. Select the mode you want to use and click OK.
  6. Depending upon the mode to which you are toggling, the tabs on the console will change. See Figure 6-3 and Figure 6-4 for examples.

Setting Other Preferences

In addition to setting the operation mode, you can use the Preferences dialog box to change these settings:

To change either of these values, open the Preferences dialog box from the Tools menu and proceed are described in the following sections:

Setting E-mail Preferences

To change e-mail preferences, do the following:

  1. Display the General tab on the Preferences dialog box
  2. In the appropriate text fields, enter the new e-mail information (SMTP server and E-mail address), as shown in Figure 6-12.
  3. Click OK
  4. Figure 6-12 E-mail Preferences Panel


     


     

    E-mail Preferences Panel


     

Enabling Persistence

Enabling the persistence means that aspect values are saved to a file and can be reviewed in charts by opening the View menu and selecting View Historical Data (View Historical Data).

Selecting Aspects to Persist To set persistence preferences, do the following:

  1. Disconnect any WebLogic JRockit JVM connections.
  2. Note: If you have not disconnected the connections and attempt to use this dialog box, you will be prompted to disconnect.

    The checkboxes in the Aspects to persist panel become enabled (Figure 6-13):

    Figure 6-13 Aspects to Persist Panel

    Aspects to Persist Panel


     
  3. Select the aspects you want to persist.
  4. Click OK.
  5. The selected aspect values are saved to a file that you can review in charts as described in View Historical Data on page 6-29.

Specifying the Persistence Directory In addition to setting preferences for the aspects to persist, you can also specify where to save the file that contains the aspect value (the "Persistence directory"). To do so:

  1. Click Choose (next to the Persistence directory field).
  2. If you are still connected to WebLogic JRockit JVM, you will be prompted to disconnect; click Yes to proceed. A standard Open dialog box appears.

  3. Locate the directory where you want to save the file and click Open.
  4. The Open dialog box closes, returning you to the Preferences dialog box.

  5. Click OK.
  6. The new Persistence directory will appear in that field.

Erasing Persistence Value Logs Finally, you can erase all persistence value logs by clicking Clear all aspect logs. You will see a confirmation message to which you should respond Yes. Be aware that, if you delete all persistance value logs by clicking this button, you will also delete any other files stored in the <USER_HOME>/console/data directory.

Customizing the Display

You can customize the console and change the way some of the monitoring data is displayed, as described in this section.

Customizing Gauges and Bars

The gauges and bars are graphical devices showing memory and processor usage (Figure 6-14).

Figure 6-14 Gauges and Bars

Gauges and Bars


 

Customizing Charts

Charts appear on the JRockit Management Console to show specified information about WebLogic JRockit.

Using the Settings File

When you exit the JRockit Management Console, your settings are automatically saved in a file called consolesettings.xml. This file is located in the folder:

<user home directory>\ManagementConsole

The exact path to the user home directory will vary on different platforms. On Windows it is usually something like \Documents and Settings\<username>; for example:

C:\Documents and Settings\jsmith\ManagementConsole

If no settings file exists in this directory it will be automatically created the next time the Management Console is closed.

Warning: Do not edit this file by hand! Doing so can make it unusable and may cause the Management Console to crash on startup.

If you are experiencing problems with the settings file, you can always delete it and let the Management Console create a new one for you.

 


Using the Console

The JRockit Management Console monitors different "aspects" of WebLogic JRockit JVM. An aspect is data that can be measured; for example, used heap size or VM uptime.

Information Tabs

Information tabs are pages containing details about different areas of the monitored WebLogic JRockit JVM. Display a tab by clicking it or by accessing the View menu. This section describes the tabs available on the JRockit Management Console.

Overview Tab

The Overview tab (Figure 6-19) shows an overview of selected connections. To select more than one connection, select the folder containing the connections you want to view. They will appear simultaneously. The page is divided into a "dashboard" with gauges in the upper part and charts in the lower part.

Figure 6-19 Overview Tab

Overview Tab


 

Memory Tab

The Memory tab (Figure 6-20) shows information about the memory status of the system, as shown.

Figure 6-20 Memory Tab

Memory Tab


 

At the bottom of the page the following text information is displayed (in kilobytes):

Processor Tab

The Processor tab (Figure 6-21) shows information about the processor status of the system.

Figure 6-21 Processor Tab

Processor Tab


 

At the bottom of the page the following text information is displayed:

System Tab

The System tab (Figure 6-22) shows various information about the system status.

Figure 6-22 System Tab

System Tab


 

Notification Tab

Use the Notification tab (Figure 6-23) to define alerts that notify users when certain events occur. You can create your own notification rules based on different triggers, with optional constraints, that alert you with a prescribed notification. This section describes how to create these rules.

Creating Custom Actions and Constraints

After starting the Management Console for the first time, a file named consolesettings.xml will be created in the \ManagementConsole directory in your <user_home> directory. Among the contents of this file are the entries for the default actions and constraints. You can programatically create custom notification actions and constraints, which are also stored in this file. Once added, these actions and constraints will appear on the Notifications tab of the Management Console. For complete information on creating custom notification actions and constraints, see Adding Custom Notification Actions and Constraints.

Figure 6-23 Notification Tab (No Rules Defined)

Notification Tab (No Rules Defined)


 

A notification trigger can be a certain event, for example, that the connection to WebLogic JRockit JVM was lost, or that an aspect reaches a certain value, for example, the used memory reaches 95%. A notification constraint can limit when a rule is triggered for example by not sending alerts at night or on certain dates.

The notification action is how the alert is communicated to the user. It can be one of the following:

Creating a New Rule

Rules determine when and how to issue a notification. To create a new rule, do the following:

  1. Click New Rule.
  2. The Name rule dialog box appears (Figure 6-24):

    Figure 6-24 Name Rule Dialog Box

    Name Rule Dialog Box


     
  3. Enter the name of the new rule in Rule name: and click Next.
  4. The Select trigger dialog box appears (Figure 6-25):

    Figure 6-25 Select Trigger Dialog Box

    Select Trigger Dialog Box


     
  5. Select a trigger (the individual triggers are described in the right panel).
  6. Enter a threshold in the text box below the trigger list, if required (Figure 6-26; this box will be marked either Min value or Max value, depending on the type of trigger selected.
  7. Figure 6-26 Trigger Threshold and Options Text Boxes

    Trigger Threshold and Options Text Boxes


     
  8. Select further options under the Option tab. For example, in Figure 6-26, you need to select what kind of aspect value change will trigger the notification:
  9. Click Next.
  10. The Select Action dialog box appears (Figure 6-27):

    Figure 6-27 Select Action Dialog Box

    Select Action Dialog Box


     
  11. Select an action and enter settings data, if required.
  12. If necessary, add a constraint to the rule (this step is optional; if you don't want to add a constraint, go to step 8):
    1. Click Next.
    2. The Add Constraint dialog box appears (Figure 6-28):

      Figure 6-28 Add Constraint Dialog Box

      Add Constraint Dialog Box


       
    3. Select a constraint and click Add.
    4. The constraint name will appear in the add list, as shown in Figure 6-29.

      Figure 6-29 Constraint Added

      Constraint Added


       
    5. Enter constraint settings in the text fields under the list of constraints (Figure 6-29).
  13. Click Finish.
  14. The new rule appears in the All available rules list on the Notification tab, as shown in Figure 6-30.

    Figure 6-30 New Rule in List

    New Rule in List


     
  15. Add the rule to your connection as described in Add a Rule to WebLogic JRockit JVM.

Editing a Rule

To edit a rule, do the following:

  1. In the Available rules list, select the rule to be edited and click Edit Rule.
  2. Check the name of the rule, edit it, if necessary, and click Next.
  3. Check the trigger and trigger settings, edit them, if necessary, and click Next.
  4. Check the action and the action settings and edit them if necessary.
  5. To continue editing the rule, the do the following (optional; if you don't want to add a constraint, go to step 6):
    1. Click Next.
    2. Check the constraints and the constraint settings. Edit them, if necessary.
  6. To finish the editing a rule, click Finish.

Add a Rule to WebLogic JRockit JVM

To add a rule to WebLogic JRockit JVM, do the following:

  1. Select the rule to be added in the Available rules list.
  2. Click Add to JRockit.
  3. The rule appears in the Active rules for this connection list, as shown in Figure 6-31.

    Figure 6-31 Rule Added to Active rules for This Connection List

    Rule Added to Active rules for This Connection List


     

Remove a Rule from WebLogic JRockit JVM

To remove a rule from WebLogic JRockit JVM, do the following:

  1. Select the rule to be removed in the Active rules for this connection list.
  2. Click Remove from JRockit.
  3. The rule will now be removed from the Active rules for this connection list.

Remove a Rule

To remove a rule from the Available rules list, do the following:

  1. Select the rule to be removed.
  2. Click Remove Rule.
  3. A removal confirmation dialog box appears.

  4. Click Yes
  5. The rule disappears from the Available rules list.

View Historical Data

The historical data window displays a chart where historical data for an aspect can be viewed. This is useful for observing trends over time and, for example, finding when a server running with WebLogic JRockit JVM has its peak loads.

To open this window, do the following:

  1. Select the connection for which you want to view data.
  2. Open the View menu and select View Historical Data.
  3. Select the aspect for which you want to view historical data, as shown in Figure 6-32.
  4. Figure 6-32 View Menu with Historical Data Submenu Open

    View Menu with Historical Data Submenu Open


     

    Historical data for the selected aspect appears (Figure 6-33).

    Figure 6-33 Historical Data (CPU Load Selected)

    Historical Data (CPU Load Selected)


     
  5. Navigate through time either by using the arrows or changing the start time in the Chart display settings.

To be able to observe historical data, aspect data from WebLogic JRockit JVM must first have been persisted, that is, written to file. See Setting Other Preferences to enable or disable persistence. The following aspects are possible to persist, and thus display, historical data for:

As soon as data has been created by a connected connection, it is available for historical observation.

Using Advanced Features of the Console

This section describes the more advanced features of the Management Console. Some of these are only available when running in the Developer mode, described in Setting the Operation Mode.

View Thread Stack Dump

The stack dump contains a list of all running threads in WebLogic JRockit JVM with a method call stack trace for each thread.

To view the thread stack dump, open the Tool menu and select View Thread Stack Dump. A dialog box containing the stack dump appears (Figure 6-34).

Figure 6-34 Thread Stack Dump

Thread Stack Dump


 

Method Profiling Tab

Note: You must be in the developer operation mode before you can perform the tasks described in this section. For more information on entering the developer operation mode, see Setting the Operation Mode.

The Method Profiler tab allows the developer to monitor method execution in a non-intrusive way. The Method Profiler can provide information about the average time spent in selected methods and the number of times methods are invoked.

Method Templates are collections of methods that can be re-used on different connections. There is a Default template, but the user may also create new templates.

Adding a Method to a Template

To add a method to a template, do the following:

  1. Select the template to be modified from the Select template list.
  2. Click Add Method.
  3. The Enter class name dialog box appears (Figure 6-35).

    Figure 6-35 Enter Class Name Dialog Box

    Enter Class Name Dialog Box


     
  4. Enter a fully qualified class name, for example, java.util.Vector, in the text field and click Next.
  5. The Select method dialog box appears (Figure 6-36):

    Figure 6-36 Select Method Dialog Box

    Select Method Dialog Box


     
  6. Select the methods to be added to the template and press Finish.
  7. The method name will appear on the Method profiling information list, as shown in Figure 6-37.

    Figure 6-37 Method Profiling Information List with Method Added

    Method Profiling Information List with Method Added


     

Removing a Method from a Template

To remove a method from a template, do the following:

  1. From the Select template list, select the template you want to modify.
  2. From the Method Profiling Information list, select the method(s) to be removed from the template.
  3. Click Remove Method.

Creating a New Template

To create a new template, do the following:

  1. Click New template.
  2. The New template dialog box appears (Figure 6-38).

    Figure 6-38 New Template Dialog Box

    New Template Dialog Box


     
  3. Enter a name for the new template in the text field.
  4. Click OK.

Removing a Template

To remove a template, do the following:

  1. From the Select template list select the template to be removed.
  2. Click Remove.
  3. A confirmation dialog box appears.

  4. Click Yes.

Starting and Stopping Method Profiling

To start the method profiling, do the following:

  1. From the Select template list, select the template to be started.
  2. Click Start/Stop.
  3. If you select Start, numbers in the Invocation count cells for each method begin to increment as method calls are made. If you select Stop, this activity will cease.

Method Profiling Settings

You can switch between using qualified method names or short names in the method profiling table.

Exception Counting Tab

The Exception Count tab (Figure 6-39) shows exceptions thrown in WebLogic JRockit JVM. It counts the number of exceptions of a certain type thrown.

Figure 6-39 Exception Counting Tab

Exception Counting Tab


 

Add an Exception

To add an exception to observe, do the following:

  1. Enter the fully qualified name of the exception into the text field at the top of the page, e.g., "java.io.IOException".
  2. Choose whether or not all subclasses of that exception should be included in the count by selecting or deselecting the Include subclasses checkbox.
  3. Click Add. You can only add subclasses of java.lang.Throwable which are loaded in WebLogic JRockit JVM and you can only add exceptions while connected.

The exception should now be displayed in the table.

Starting, Stopping, and Removing an Exception Count

To start the exception count, click Start. The results should now appear next to the name of the exception being counted. Similarly, to stop the exception count, click Stop.

To remove an exception from the count, select the exception to be removed and click Remove.

Closing the Console

To close the JRockit Management Console and disconnect all connections, open the Connection menu and select Exit. Clicking X in the top right corner of the window will also close the JRockit Management Console.

 

Skip navigation bar  Back to Top Previous Next