Skip to content

Instantly share code, notes, and snippets.

@jmesnil
Created August 1, 2008 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmesnil/3646 to your computer and use it in GitHub Desktop.
Save jmesnil/3646 to your computer and use it in GitHub Desktop.
#!/usr/bin/env jruby
require 'rubygems'
require 'jmx4r'
runtime = JMX::MBean.find_by_name "java.lang:type=Runtime"
# runtime.system_properties is a TabularData
runtime.system_properties.each do | sysprop |
puts "#{sysprop["key"]} = #{sysprop["value"]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment