Reputation: 15
I need to monitor the Health Status of Deployment on Weblogic Server. i can get Server health status, threadpool status, overall server HealthStatus but didn't find Deployment Health Status. although i can get CurrentStatus which is the deployment Status (Prepared, Active etc). Please help
Upvotes: 1
Views: 2166
Reputation: 637
The health state lives on the individual server runtimes and cannot be found on the overall domainRuntime, I think the admin server just adds up all health states.
To get to the health state of a single deployment, you can use the following code after connecting to the Adminserver over WLST:
domainRuntime()
appBean = getMBean("ServerRuntimes/my_server1/ApplicationRuntimes/my_app1")
appBean.getHealthState()
Upvotes: 1