tags:

views:

418

answers:

2

Inside the weblogic console, when you click on a deployment, there is a tab named 'Monitoring' and a subtab named 'Health'.

How can i expose my application health to this tab? Is there a developer's guide somewhere?

http://i.imgur.com/T4agy.jpg

To clarify what i want to do: Output my application background process states to this 'Health' monitoring page in the WLS admin page.

A: 

Use the provided framework and tag libraries to Extend the Administration Console (11g). If you can't add your own data to the "Health" tab, you should at least be able to add your own sibling tab to that page.

Jonathan Julian
Interesting read. I will definitely consider Console extension.
JavaRocky
+1  A: 

The guide Configuring and Using the Diagnostics Framework for Oracle WebLogic Server might be worth a look. It describes how to configure Weblogic to monitor your custom JMX beans, among other things. I don't know if this framework is used by the Health tab you're referring to, though.

markusk
Thanks. I will look into it and hopefully get back.
JavaRocky