Skip to content

Instantly share code, notes, and snippets.

@stephennancekivell
Created March 11, 2014 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephennancekivell/9481899 to your computer and use it in GitHub Desktop.
Save stephennancekivell/9481899 to your computer and use it in GitHub Desktop.
Get jvm memory stats for all java processes.
#!/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