2014. 8. 20. 10:24

JVM Monitoring with WLST

Hey dear WLAs, here I am with a new assignment for JVM monitoring. The fresh production environment setup with Clustered Domain with multiple physical locations with multiple UNIX machines.

The WebLogic capacity planning going on and various low memory or OutOfMemory issues araising when new migration happen from WebLogic 8.1 to 9.2 MP3. To identity how the Garbage Collection working? How much free memory is available for each instance? This can be known with JVM statistics, which inturn tuning the JVM parameters or reset is easy for decide.

I had found a JVM monitoring script that is best suites to my WebLogic environment.

This script is able to get all server instances JVM statistics with a single run. The beauty of WLST is that it runs on single JVM and provides us the required output with the help of domain, server Runtime MBeans, which are supported by WebLogic 9.x and later releases by default supporting JMX 1.2, which has many good features to control and monitor the Runtime Environment of a WebLogic Server instance.

Here have the script which I have modified as per my task there is little C-style customization done with Python language syntax. I mean in Jython which actally used in the WLST.

This could be further refined but ... short of time I am pubishing this
Enjoy!!! Jython/WLST SCRIPTING

#You can create key files
ucf='keypath/xuserconfig.key'
ukf='keypath/xkeyfile.key'
admurl = "t3://hostingdns.com:port"

# This module is for retrieve the JVM statistics
def monitorJVMHeapSize():
      connect(userConfigFile=ucf, userKeyFile=ukf, url=admurl)
      # alternate connect('user', 'passwd', 'adminurl')
      serverNames = getRunningServerNames()
      domainRuntime()

      print '                TotalJVM  FreeJVM  Used JVM'
      print '=============================================='
      for name in serverNames:
   try:
      cd("/ServerRuntimes/"+name.getName()+"/JVMRuntime/"+name.getName())
      freejvm = int(get('HeapFreeCurrent'))/(1024*1024)
      totaljvm = int(get('HeapSizeCurrent'))/(1024*1024)
      usedjvm = (totaljvm - freejvm)
      print '%14s  %4d MB   %4d MB   %4d MB ' %  (name.getName(),totaljvm, freejvm, usedjvm)
   except WLSTException,e:
     pass

# This module for managed Servers list
def getRunningServerNames():
     domainConfig()
     return cmo.getServers()

if __name__== "main":
     monitorJVMHeapSize()
     disconnect()

'Weblogic' 카테고리의 다른 글

weblogic 12c  (0) 2014.08.27
pythons programming  (0) 2014.08.25
WLST Thread Count  (0) 2014.08.20
WebLogic Scripting Tool (WLST) Overview  (0) 2014.08.19
Server State using WLST  (0) 2014.08.19
Posted by 아도니우스