Jeff Mesnil’s Weblog

Archive for June, 2007

Gem for jmx4r + authentication

Wednesday, June 27th, 2007

jmx4r is a library for JRuby to make it super easy to write Ruby scripts to manage remote Java applications through JMX.

Thanks to RubyForge, installing jmx4r is now as simple as typing

jruby -S gem install jmx4r

and its use is straightforward

!/usr/bin/env jruby

require ‘rubygems’ require ‘jmx4r’

optional since by default, jmx4r tries to connect to

a JMX […]

jmx4r, a JMX Libary for JRuby

Monday, June 11th, 2007

Just in time for the release of JRuby 1.0 and following my experiments with writing JRuby scripts to manage remote applications using JMX (part I & II), I created jmx4r, a simple library which makes it super easy to write such scripts.

For example, to trigger a Garbage Collection on a remote Java application , the […]

eclipse-jmx 0 .2.1 is released

Friday, June 8th, 2007

eclipse-jmx 0.2.1 has been released.

Compared to previous release, the main new feature is the support for MBean notifications.

Under the hood, the code which displays MBean attribute values has been completely rewritten by Ben Walstrum using extension points. Thanks to his contribution, any MBean attribute display can now be customized (e.g. using charts, hyperlinks, …)

See what’s new […]