This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a6531076c3b1bfca9377c8652a0f6606d6a35863
tree 7e74f73f08d8365d59f047afdca0c1ea8d33fb5b
parent 81bcc81f6a4d8e97b1120c520d2b0330f575cb63
tree 7e74f73f08d8365d59f047afdca0c1ea8d33fb5b
parent 81bcc81f6a4d8e97b1120c520d2b0330f575cb63
jmx4r /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
AUTHORS.txt | ||
| |
LICENSE.txt | Thu Apr 10 12:17:46 -0700 2008 | |
| |
README.txt | ||
| |
Rakefile | ||
| |
examples/ | ||
| |
lib/ | ||
| |
test/ |
README.txt
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/]. == Examples To trigger a garbage collection on a Java application: require 'rubygems' require 'jmx4r' JMX::MBean.establish_connection :host => "localhost", :port => 3000 memory = JMX::MBean.find_by_name "java.lang:type=Memory" memory.gc








