-1

How do we get the Java heap, memory stats and other health monitoring statistics from a Unix machine instead of from the weblogic console.

llanato
  • 2,508
  • 6
  • 37
  • 59
navi27
  • 13
  • 1
  • 8

1 Answers1

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