Created
March 11, 2014 08:53
-
-
Save stephennancekivell/9481899 to your computer and use it in GitHub Desktop.
Get jvm memory stats for all java processes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ps aux | grep java | |
for PID in `pidof java` | |
do | |
echo | |
echo "jmap -heap $PID" | |
jmap -heap $PID | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment