jmx4r[http://github.com/jmesnil/jmx4r/] is a JMX library for JRuby.
It can be used to write simple Ruby scripts running on JRuby[http://jruby.org] to manage remote Java applications (e.g. JBoss[http://www.jboss.org], Tomcat[http://tomcat.apache.org/]) using JMX[http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/].
jmx4r helps to manage Java applications using JMX in a simple and powerful way:
== Installation
jruby -S gem install jmx4r
== Usage
require 'rubygems' require 'jmx4r'
JMX::MBean.establish_connection :host => "localhost", :port => 3000
memory = JMX::MBean.find_by_name "java.lang:type=Memory"
memory.verbose = true
memory.gc
JMX::MBean.establish_connection :command => /jconsole/i
== Help
== Source Code
git clone git://github.com/jmesnil/jmx4r.git