Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On a remote Weblogic Cluster, I would access to each size of the Non Heap memory of each instance of my cluster.

I'm connected to my admin server with a url such as this one: service:jmx:t3://acetp-env-admin:9091/jndi/weblogic.management.mbeanservers.runtime

How could I access to java.lang jmx package of each instance?

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

The service url you have will let you connect to the MBean server that Weblogic is exposing. This is for control over services weblogic provides but not core JVM mbeans. You need to connect to the Platform MBean server - directly to the JVM. That's why you're not seeing java.lang.

Check out http://download.oracle.com/javase/1.5.0/docs/guide/management/mxbeans.html

share|improve this answer
ok, that's what I supposed! No miracle method to register the java.lang.* in mean – Eric V Nov 3 '11 at 20:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.