The JavaTMManagement Extensions (JMX) API

This group is dedicated to the JavaTM Management Extensions (JMXTM) API in project OpenJDK.

Introduction

The JMX API is a standard API for management and monitoring of resources such as applications, devices, services, and the Java virtual machine.

Typical uses of the JMX technology include:

The JMX API includes remote access, so a remote management program can interact with a running application for the above purposes.

Specifications

The JMX technology is developed through the Java Community Process (JCP). In JDK versions 5.0 and 6, the JMX technology was developed as Java Specification Request (JSR) 3, Java Management Extensions, and JSR 160, JMX Remote API. Evolutions of the JMX API and JMX Remote API in JDK version 7 are covered by JSR 255, JMX API 2.0.

JMX Implementation Sources

The JMX implementation is composed of the following packages :

Contributing to the JMX API

To contribute to the JMX API, make sure you read the page explaining how to contribute to OpenJDK, and follow the rules and guidelines described there. You will find out that there can be many ways to contribute: one of them is to contribute to the quality.

The JMX API is a pure Java class library. It does not contain any native code.

You might be also interested in contributing to JConsole. The jconsole tool is a JMX-compliant graphical tool for monitoring a Java virtual machine.

Debugging and Troubleshooting Tips

The JMX technology uses the java.util.logging API to print debug traces. You can activate these traces by providing a logging.properties file on the command line when you run your Java application.

Documentation

Community