JVMMON help commands

Hello , jvmmon is an excellent tool for JBOSS administrators and please find below list of commands for jvmmon  Print commands: __________________________   print arenastat                             - Prints brief arena statistics   print arenastat full                ...

Python Object reference well explained with list

Assume you have a list and you want to make exact copy of the list. What command you will use in python to copy a list from another list. I used List1=List2 and List1 got copied as exactly as List2 but what happen internally is they have shared command object reference location. Dont believe ? then lets try and try to see both lists location with id function id() I mean do as  id(List1)...

How to get full application propery reports by using jvmmon ?

Hello , Let come straight to the point. If you want to see right now with what properties your Jboss application servers are running , Please type jvmmon and choose current PID of your JBOSS process. Then type print system properties It will flood your stdout , copy and paste it in a file and you can use to analyse. else you can save it to a file in your system. $ print to file file = /tmp/fromjvmmon $...