Managing and Monitoring Resources Using the JMX Monitoring Features
This topic describes JMX Monitoring Features and how to manage and monitor resources with the features. JMX is a Java standard in the aspect of management. It provides a local or remote model for managing Java application systems. Its target is to offer the instrumentation, which can be accessed by all kinds of application management systems.
A JMX-compliant Application Server makes all registered manageable resources possible to be managed, configured, and controlled easily and flexibly. All those managed resources can be dynamically modified and processed by third-party management software or other management component systems.
Below is a list of the sections covered in this topic:
- Logi JReport Server's JMX Monitoring Features
- Using the JMX Monitoring Features
- JMX Monitoring in an Integration Environment
- Notes for Using the JMX Monitoring Function
Logi JReport Server's JMX Monitoring Features
This section introduces the infrastructure with which the JMX Monitoring features are implemented and the implementing methods that can be used.
MBeans building principle
Logi JReport adopts a Standard MBean specification for building Logi JReport Server's underlying managed beans.
In the process of creating and registering the JMX MBean, Logi JReport designed and abstracted all meta-data of all managed resources and then saved them into their corresponding persistent entities. At runtime, the program changes all these meta-data into MBeanInfo and then adds them to the related Managed Bean.
After all these MBeans have been built, they are then registered into an internal or external MBeanServer Agent. Only when top-level management software or other integration environments can find the MBeanServer agent, can they manage and control all the underlying Managed Beans registered in the MBeanServer.
Working principle behind the JMX Monitoring function
With Logi JReport Server Monitor, when all the managed resources objects of Report Server have been initiated and instantiated, the Managed MBeans are then registered into the MbeanServer. Then all the attributes, operations, notifications and constructors of the associated Managed resource object are exposed to the MBeanServer via the corresponding Managed Bean. The MBeanServer then exposes all of these registered Managed Beans to the top-level management system resorted to the related Protocol Adaptors or Connectors.
In Server Monitor's environment, when launching the Server Monitor, Logi JReport first creates ClusterRuntimeMBean, ServerRuntimeMBean for every active Logi JReport Server in the cluster, and TaskRuntimeMBean, UserSessionRuntimeMBean, DatabaseRuntimeMBean, AdhocRuntimeMBean for every active running Logi JReport Server. Then all these MBeans can be registered into the integrated customized MBeanServer or Standalone MBeanServer agent. At any time, when a Logi JReport Server is launched, the TaskRuntimeMBean, UserSessionMBean, DatabaseRuntimeMBean and AdhocRuntimeMBean associated with it are created and registered into the MBeanServer agent too. Then, all of Logi JReport Server's monitoring features can be exposed to top-level management software or other integration environment resorted to the MBeanServer agent.
So, all the Runtime MBeans of Task, User Session, Database and Ad hoc related are dynamically created in real time and registered into a local MBeanServer. The MBeanServer will then invoke all registered MBean operation or attributes to implement the JMX monitoring function.
Descriptions of MBeans in Logi JReport Server
When starting Logi JReport Server Monitor, the following MBeans are created:
- ClusterRuntimeMBean
- Attributes:
ClusterEnable (boolean)
ClusterName (java.lang.String)
PredefinedServerStatus(jet.server.monitor.api.ServerStatus[])
PredefinedServers(jet.server.api.cluster.Member[]) - Operations:
ServerStatus getServerStatus(String host, int port);
stopServer(String host, int port);
- Attributes:
- ServerRuntimeMBean
- Attributes:
Name (java.lang.String)
Host (java.lang.String)
Port (int)
Status (java.lang.String)
Type (java.lang.String)
WaitingRptNums (int)
RunningRptNums (int)
FinishedRptNums (int)
FinishedRptPages (int)
AvgProcessTimeByRpt (int)
AvgWaitTimeByRpt (int)
ValidUserSessionNums (int)
AvgRptNumsSubmittedByUser (int)
CurrentConnectionNums (int) - Operations:
void stop();
- Attributes:
- TaskRuntimeMBean
- Attributes:
AllFailedTaskInfos(jet.server.monitor.api.task.TaskInfo[])
AllFinishedTaskInfos(jet.server.monitor.api.task.TaskInfo[])
AllRunningTaskInfos(jet.server.monitor.api.task.TaskInfo[])
AllWaitingTaskInfos(jet.server.monitor.api.task.TaskInfo[]) - Operations:
TaskInfo[] getRunningTaskInfosByUser(String userName);
TaskInfo[] getWaitingTaskInfosByUser(String userName);
TaskInfo[] getFinishedTaskInfosByUser(String userName);
TaskInfo[] getFailedTaskInfosByUser(String userName);
void stopTask(String taskID);
- Attributes:
- UserSessionRuntimeMBean
- Attributes:
AllUserSessions(jet.server.api.UserSession[])
SessionTimeout (int) - Operations:
UserSession[] getUserSessionsByUser(String userName);
void removeUserSessionBySessionID (String sessionID);
void removeUserSessionsByUserID (String userID);
void removeAllUserSessions ();
String getHttpSessionID (String usID);
- Attributes:
- DatabaseRuntimeMBean
- Attributes:
ConnectionProperties(java.util.Properties[]) - Operations:
void disconnect (String connInfoID);
- Attributes:
HtmlAdaptor
Logi JReport provides an HtmlAdaptor which allows all registered Logi JReport Server's MBeans to be viewed from web pages. This HtmlAdaptor is based on the default implementation of Sun's JMX tools, and can process a user's HTTP request and dispatch it to the MBeanServer Agent. Then respond to client-end web pages according to the MBeanServer's returned information.
The HtmlAdaptor is also instantiated as an MBean and registered into the MBeanServer Agent. Due to this, you can modify its listener port or other properties from the MBeanServer just like other MBeans.
By default, the HTMLAdaptor uses the port 8849 for providing web services. You can modify it and specify a distinct port in the server.properties file in <install_root>\bin
. If you have launched Server Monitor and JMX startup has been set to true, a property item named monitor.jmx.htmladaptor.port will then be appended to the server.properties file in <install_root>\bin
.
After launching Logi JReport Server and Server Monitor, and setting the monitor JMX startup property to true, all registered Logi JReport Server's MBeans will then be available for viewing from a web page (http://localhost:8849
by default).
Supporting tips information in the web UI (some auxiliary tools)
In the default implementation mode, all MBean information is built by MBeanServer. All the descriptions and names of attributes, operations, and parameters displayed in the web UI are adopted as the default contents by the MBeanServer Agent.
For friendly supporting tips information in the web UI, Logi JReport has improved all the managed beans with extended methods for supporting customized descriptions and names of the attributes, operations and parameters. All these customized descriptions and names are built into the MBeanInfo of all the registered MBeans. The MBeanServer will invoke these methods to obtain our customized descriptions and names of all displayed MBeanInfo's attributes, operations and parameters in the web UI.
Using the JMX Monitoring Features
Logi JReport have created a local MBeanServer for managing all Runtime MBeans in default mode. The management program within a standalone can directly get an MBeanServer's reference via the default implementation of the MBeanServerFinder interface.
In addition, you can also specify your customized MBeanServerFinder's implementation for obtaining an external MBeanServer agent when launching the Server Monitor. You then need only to append the Java option -Djrs.externalMBeanServerProvider=
with your fully-qualified customized class file name to the Java command line that launches the Server Monitor.
When the Server Monitor has been started and the JMX feature supporting has been set to true, it will then get the System property of rs.externalMBeanServerProvider. If this property has been set, the Server Monitor will use it to obtain an external MBeanServer Agent. Otherwise, a default standalone MBeanServerFinder implementation will be adopted to get the internal default MBeanServer Agent.
After launching Logi JReport Server and Server Monitor, and setting monitor JMX startup property to true, all registered Logi JReport Server's MBeans will be available for view from a web page (default http://localhost:8849
).
JMX Monitoring in an Integration Environment
In an integration environment with top-level java-enabled management software or another JMX-compliant HTTP application server, that application server has probably already provided an MBeanServer Agent for managing its manageable beans. When integrating Logi JReport Server and Server Monitor with that server, all Logi JReport Server's MBeans should also be registered into its existing MBeanServer.
We provide an MBeanServerFinder interface to support user's customized implementation for obtaining an external MBeanServer Agent.
If you want to integrate Logi JReport Server and Server Monitor with other JMX-enabled application server environment, you should provide an MBeanServerFinder's implementation for obtaining the application server's MBeanServer Agent, and append their implemented fully-qualified class file name with the java option -Djrs.externalMBeanServerProvider=
to the corresponding application server's launching java command line. Then, after launching the application server integrated with Logi JReport Server and Server Monitor, if you specify jmx startup to be enabled, then all Logi JReport Server's MBeans will be built and registered into the application server's MBeanServer Agent. At the same time, the default HtmlAdaptor Logi JReport provides
will also be built and registered into the external MBeanServer Agent. Then all registered Logi JReport Server's MBeans and the application server's registered managed beans from the HtmlAdaptor or via the application server's provided interface can be viewed.
In the default implementation, Logi JReport has also provided three general integration-related MBeanServerFinder implementations as simple samples: JBossMBeanServerFinderImpl, TomcatMBeanServerFinderImpl and WebLogicMBeanServerFinderImpl. When you integrate Logi JReport Server and Server Monitor with JBoss, Tomcat and WebLogic complied with JMX features, they can provide their implemented external MBeanServerFinder implementation to the java command line option -Djrs.externalMBeanServerProvider=
, or directly use our default implementation and append it to the java option.
Notes for Using the JMX Monitoring Function
When using the JMX Monitoring function, pay attention to the following aspects:
- In the MBeanServerFinder interface, Logi JReport has just specified one interface method public MBeanServer getMBeanServer(); You will need to implement this interface method and provide a public Constructor method without any parameters.
- When compiling and releasing our JMX features, it is required to append two Sun's JMX standard packages jmxri.jar and jmxtools.jar. Otherwise, you will be required to use JDK V1.8.0 or later version (In J2SE V1.8.0 and later, Sun Co. has also provided a JMX standard API as a part of JDK's standard APIs).
- When compiling our JMX features with the four external integration MBeanServerFinder's implementation(JBossMBeanServerFinderImpl, TomcatMBeanServerFinderImpl, WebLogicMBeanServerFinderImpl and WebSphereMBeanServerFinderImpl), it is required to append the three integration platform-related packages to the javac class path: "
$jboss-root$\lib\jboss-jmx.jar
(for JBoss V3.2.3)", "$tomcat-root$\server\lib\catalina.jar
(for Tomcat V4.1.30)" and "$weblogic-root$\server\lib\weblogic.jar
(for WebLogic V810)". However, these three packages do not need to be appended to our release products. - Since the JMX monitoring function is based on the currently existing Server Monitor and is built into Server Monitor, then only Server Monitor's release version is required for appending Sun's JMX standard packages to Server Monitor's lib directory. The JMX feature of Logi JReport Server does not require to append anything.