0

I want to monitor a weblogic system which uses JMX via an Erlang client. How can I do this? (Note that I cannot use SMTP as it is disabled and cannot be enabled on the server)

womble
  • 95,029
  • 29
  • 173
  • 228
yazz.com
  • 6,743
  • 14
  • 37
  • 38

2 Answers2

1

You can deploy Jolokia on the application server which exposes your JMX MBeans over an HTTP interface. All you will need to do then from your Erlang client is make HTTP calls and make sense of the JSON output it returns. Make sure you secure the Jolokia deployment so that the world doesn't have access to it, of course.

objectified
  • 434
  • 2
  • 3
0

Perhaps this nagios plugin (Jmx4perl) may help you. It has a java web application which has to be deployed in your WebLogic server. With this app you can access the JMX server of your WebLogic with http.

Perhaps your WebLogic has this sort of application already deployed. JBoss has it: JmxConsole

Christian
  • 4,645
  • 2
  • 23
  • 27