Hello
I am trying to use jruby to connect to the jconsole’s Mbeans to get
counter values in the output.
I installed jmx4r gems for that purpose.
so this is what I am doing: as follows "-
jirb
(takes me to the jruby interactive console on linux)
mp = JMX::MBean.find_all_by_name “Process:name=MyProcessStatistics”,
:host => “localhost”, :port => 3001
Ideally, this command should display all the functions inside the
process, so that I can use ‘put’ to display the counter values…for
instance. it should give something like below
“total_files_dispatched”=>“TotalFilesDispatched”
but it actually just returns => [#JMX::MBean:0x4178feba]
Not sure what that means… Can someone please help?