6 Using JMX Extensions to Monitor EDQ

This chapter describes the Java Management Extensions (JMX) interface that can be used to monitor and manage many details of its operation. JMX is a Java technology designed for remote administration and monitoring of Java components

This chapter includes the following topics:

6.1 Understanding JMX Binding

EDQ can use either an internal JMX server or one that is provided in the WebLogic or Tomcat application server. This topic explains how to control which JMX server is used.

  • A default installation of EDQ on Apache Tomcat uses an internal JMX server.

  • A default installation of EDQ on Oracle WebLogic Server uses the JMX tree in the WebLogic Server application server.

The default configuration contains a Remote Method Invocation (RMI) registry, which is used by the EDQ command line interface as well as by JMX clients. The RMI listening port number is specified by the management.port property, defined in the director.properties file. The default is 8090. This property controls access to both the internal JMX Server and the RMI API that is used by the command line tools.

You can change the JMX configuration as follows:

  • If you do not want to use the command line interface, and you want to have JMX Beans appear in the Tomcat application server JMX tree (not the internal JMX server), change the management.port property to 0:

    management.port=0

    When management.port is set to zero, the RMI registry does not listen on any port. This means that the internal JMX Server will not be used and that the RMI API will also not be available. The command line tools will therefore not work if management.port is set to 0.

  • If you are using Oracle WebLogic Server, and you want to use the command line interface as well as have JMX Beans appear in the WebLogic Server JMX tree, add the following property to the director.properties file in the configuration directory. Retain the setting of 8090 for management.port so that the RMI API can be used by the command line tools.

    management.jndiname=java:comp/env/jmx/runtime

6.2 Understanding JMX Bean Naming

The naming scheme used for the JMX Beans is designed to work well with Jconsole. However, other JMX Clients may require a modified naming scheme.

The names used for the JMX Beans can be customized by writing and placing an appropriate JavaScript or Groovy file in the configuration directory and setting the management.namemaker.scriptfile property in the director.properties to indicate its existence

6.2.1 Reviewing the Example

This example demonstrates how to modify the default JMX Bean naming scheme to add a type attribute to the end of the name. The type attribute will be based on the Java Bean class.

  1. Create a file named jmxnames.js in the configuration directory and add the following JavaScript to it:
    /**	
    * Adds a type attribute to the name of a JMX Beans.	
    * 
    * @param beanclass The bean class name	
    * @param domain The domain name	
    * @param names The name strings 
    * 
    * @return The name string	
    */	
    function objectNameFor(beanclass, domain, names) 
    {	
    var type = beanclass == null ? "*" : beanclass.substring(beanclass.lastIndexOf('.') + 1); 
    var out;	
    /*	
    * The names array always has 2 elements.	
    */	
    out = domain + ":" + "component=" + escape(names[0]) + ",name=" + escape(names[1]);	
    for (var i = 2; i < names.length; i++)	
    {	
    var index = i-1	
    out += "," + "name" + index + "=" + escape(names[i]);	
    }	
    return out + ",type=" + type;	
    }	
    
  2. Add the following line to the director.properties file:

    management.namemaker.scriptfile = jmxnames.js

  3. Restart the EDQ application server.

    The JMX Beans will now include a type qualifier at the end of their names.

6.3 Monitoring Real-Time Processes

is provided with a built-in JMX server that can be used to monitor many aspects of its operation. Many of the objects and resources that make up the EDQ application provide MBeans to the JMX server, including the real-time Web services.

6.3.1 Monitoring the Real-Time Web Service MBeans

Each real-time Web service registers an MBean for its reader and one for its writer in the JMX tree.

Readers are registered at:

Runtime/Data/Buckets/Realtime/Projects/Project Name/readers/Web service name

Writers are registered at:

Runtime/Data/Buckets/Realtime/Projects/Project Name/writers/Web service name

In each case, the path to the MBean includes the name of the Web service that owns it and the project that contains the web service.

Global Web services (those deployed in a .jar file in the oedq_local_home/webservices directory) have a different path name. Simply replace Projects/Project Name in the path above with Global.

The port for the internal JMX server is controlled by the management.port property, defined in the director.properties file.

6.3.2 Monitoring the Real-Time MBeans

A general JMX console, such as JConsole, can be used to interact with MBeans. Each MBean exposes:

  • Attributes, whose values can be read.

  • Operations that can be invoked to perform some action with the MBean.

  • An interface that allows clients to subscribe to notifications of events that occur on the MBean.

The EDQ real-time web service MBeans uses the following attributes:

Attributes Description

closetime

The time at which the bucket was last closed.

concurrent

The current number of synchronous requests.

maxConcurrent

The maximum number of concurrent synchronous requests since the bucket was opened.

maxConcurrentMax

The maximum number of concurrent synchronous requests since startup.

messages

The number of messages processed since the bucket was opened.

open

Indicates whether the bucket is open or closed.

openCount

The number of times the bucket has been opened since startup.

opentime

The time when the bucket was last opened.

processtime

The time when the last message was processed.

records

The number of records processed since the bucket was opened.

threads

The number of threads that used the bucket when it was last opened.

totalMessages

The number of messages processed since startup.

totalRecords

The number of records processed since startup.

The EDQ real-time web service MBeans exposes the following operation:

Attribute Description

closedown

Shutdown the reader or writer using this bucket.

6.4 Using REST APIs to Access and Manage MBeans

'EDQ defines a large number of JMX MBeans. A subset of these are commonly used for monitoring or changing key settings. This includes:

  • "Bucket" MBeans that are used to monitor web service status.
  • Logging MBeans that are used to control logging levels.
  • SCCS MBean that has an operation to trigger rescan of source code control workspace, commonly used with Git integration.
  • Runtime MBean that allows you to set runtime threads.

While you can use JConsole or scripts to access these MBeans, this is cumbersome and can cause problems with firewalls. EDQ 14.1.2.0.0 introduces a REST API that allows you to read and write MBean attributes and invoke MBean operations.

6.4.1 Web Enabled MBeans

An MBean that has a REST interface includes additional attributes in the MBean descriptor. These can be viewed in JConsole. Here's an example for a realtime reader MBean:
Realtime reader MBean

The web.path attribute is the path used after http://server/edq to access the MBean. The web.permission attribute displays the permission required to access the MBean.

The following MBeans are web-enabled in 14.1.2.0.0:

MBean Description Permission Required Web path

Logger control

The logger control MBeans provide operations to query and set the logging level for each distinct logger registered in EDQ.

System Administration

The web path is:

/management/mbeans/Logging/loggerpath

For example,

/management/mbeans/Logging/OCI%20support

Runtime data nexus

The data nexus MBean provides operations to set and query runtime data "environment variables". The primary use case is in setting record counts in "randomator" buckets. For example,

<randomsource count="$randcount:10000" seed="$randseed">

System Administration

The path to the MBean is

/management/mbeans/Runtime/Data/Nexus

Bucket providers and consumers

These MBeans provide status information for realtime providers and consumers. Attributes include "open" and "active" states and record counts.

Connect to Messaging System and project access if relevant

The web paths are:

  • Global providers - /management/mbeans/Runtime/Data/Buckets/realtime/Global/readers/providers/NAME
  • Global consumers - /management/mbeans/Runtime/Data/Buckets/realtime/Global/writers/consumers/NAME
  • Project web service readers - /management/mbeans/Runtime/Data/Buckets/realtime/Projects/PROJECTNAME/readers/WEBSERVICE
  • Project web service writers - /management/mbeans/Runtime/Data/Buckets/realtime/Projects/PROJECTNAME/writers/WEBSERVICE

Runtime engine

The runtime engine MBean provides attributes to control the number of threads used in normal and interval mode. After update the values take effect the next time a job is started, but are not persisted over server start.

System Administration

The path to the MBean is

/management/mbeans/Runtime/Engine

Source code control

The source code control MBean provides an operation to rescan the workspace location for changes. The primary use case is with Git integration after a pull operation. The web interface provides an alternative to the scan.groovy script that is shipped with EDQ.

System Administration

The path to the MBean is

/management/mbeans/SCCS/Controller

File server control

This MBean can be used to configure web access to configuration and log files.

System Administration

See Using HTTP and HTPS Server to Access EDQ Files.

6.4.2 REST API for MBeans

The REST API for MBeans allows you to do the following:

  • Read MBean attribute(s)
  • Set MBean attribute
  • Invoke MBean operation

Read MBean attribute(s)

GET http://server:port/edq/mbeanpath[?attributes=attr1,attr2]

The mbeanpath component is the MBean web path mentioned in Web Enabled MBeans. The optional attributes parameter lists the attributes to return. If omitted, all attributes are returned.

The result is a JSON object containing the attribute values.

For example, to get the active and open attributes for a the web service named summer in project rt, the URL would be: http://server:port/edq/management/mbeans/Runtime/Data/Buckets/realtime/Projects/rt/readers/summer?attributes=active,open

And the result might be:

{ "active": 0,
  "open": 0
}

Set MBean attribute

POST http://server:port/edq/mbeanpath/setattribute

The payload is a JSON object containing these attributes:

Attribute Type Description

attribute

String

The MBean attribute name.

value

Must match type of attribute

The new value for attribute.

The result is a JSON object containing the attribute previousvalue set to the previous value of the MBean attribute.

For example, to set the runtime thread count to 4, the URL would be:

http://server:port/edq/management/mbeans/Runtime/Engine

And the payload would be:

{ "attribute": "processThreads",
  "value": 4
}

Invoke MBean operation

POST http://server:port/edq/mbeanpath/invoke

The payload is a JSON object containing these attributes:

Attribute Type Description

operation

String

The MBean operation name.

arguments

Array

The invocation arguments.

The result is a JSON object containing the attribute result set to the result of the call.

For example, to set the log level for case management searches to FINEST, the URL would be:

http://server:port/edq/management/mbeans/Logging/Case%20Management%20Filter%20Execution

And the payload would be:

{ "operation": "setLevel",
  "arguments": ["FINEST"]
}

This corresponds to adding the following to logging.properties.

com.datanomic.director.casemanagement.search.level = finest

Logging MBeans use the "display name" of the logger in the path, while logging.properties uses the internal package names. You can see the MBean package in the MBean module attribute by accessing the MBean JConsole on a running EDQ server edq | Logging | Case Management Filter Execution.