Java Management Extensions (JMX) Technology
http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/
Java Management Extensions (JMX)
http://download.oracle.com/javase/1.5.0/docs/guide/jmx/index.html
Getting started with JMX
http://java.sun.com/developer/technicalArticles/J2SE/jmx.html
Monitoring and Management using JMX
http://download.oracle.com/javase/1.5.0/docs/guide/management/agent.html
-Dcom.sun.management.jmxremte
-Dcom.sun.management.jmxremote.port=portNumber
An object name consists of two parts, the domain and the key properties.
The domain is a string of characters not including the character colon (
An ObjectName can be written as a String with the following elements in order:
http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/
Java Management Extensions (JMX)
http://download.oracle.com/javase/1.5.0/docs/guide/jmx/index.html
Getting started with JMX
http://java.sun.com/developer/technicalArticles/J2SE/jmx.html
Monitoring and Management using JMX
http://download.oracle.com/javase/1.5.0/docs/guide/management/agent.html
-Dcom.sun.management.jmxremte
-Dcom.sun.management.jmxremote.port=portNumber
An object name consists of two parts, the domain and the key properties.
The domain is a string of characters not including the character colon (
:
).An ObjectName can be written as a String with the following elements in order:
- The domain.
- A colon (
:
). - A key property list as defined below.
A key property list written as a String is a comma-separated
list of elements. Each element is either an asterisk or a key
property. A key property consists of a key, an equals
(=
), and the associated value.