How do we get the Java heap, memory stats and other health monitoring statistics from a Unix machine instead of from the weblogic console.
Asked
Active
Viewed 827 times
-1
-
Can some one help me with this – navi27 Jan 23 '15 at 14:32
-
Use `top` or use `jConsole` and connect to the server process. This question does not really belong here as it's a basic Unix question, not a programming question – Display Name is missing Jan 23 '15 at 17:36
1 Answers
0
You may be able to get memory information based on the weblogic server process id. If you use
ps -ef | grep |insert weblogic server name|
to get the process ID of the weblogic server in question you can then use this document to get the memory usage of that process.

Garreth
- 1,057
- 2
- 9
- 24