This is a simple utility to work with JMX from command line interface.
Requirements:
- jshell from jdk is required.
- management agent have to be started. Can be started on running JVM with
jcmd PID ManagementAgent.start_local
Usage:
jshell -R-Dpid=PID -R-Dcommand=getBeans jmxclient.jshjshell -R-Dpid=PID -R-Dcommand=getBeanInfo -R-Dbean=java.lang:type=Memory jmxclient.jshjshell -R-Dpid=PID -R-Dcommand=getAttribute -R-Dbean=java.lang:type=Memory -R-Dmethod=HeapMemoryUsage jmxclient.jshjshell -R-Dpid=PID -R-Dcommand=invoke -R-Dbean=java.lang:type=Memory -R-Dmethod=gc jmxclient.jsh
Available options:
-R-Dpid=PID- java process id you want attach to-R-Dcommand=help|getBeans|getBeanInfo|getAttribute|invoke- specify what to do-R-Dbean=BEAN_PATH- full path to mbean object like: java.lang:type=Memory-R-Dmethod=METHOD_NAME- attribute or operation name-R-Dargs=ARGUMENTS- additional method arguments separated by space
Commangs:
- help - show help
- getBeans - output a list of all availiable MBeans
- getBeanInfo - output all availiable attributes and operations for MBean
- getAttrigute - output MBean attribute value
- invoke - run MBean operation