Skip to content

Instantly share code, notes, and snippets.

@FreekPaans
Created March 10, 2015 12:26
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 FreekPaans/4a2fed46a5cf4b5c113c to your computer and use it in GitHub Desktop.
Save FreekPaans/4a2fed46a5cf4b5c113c to your computer and use it in GitHub Desktop.
print java heap usage
#http://www.journaldev.com/2856/java-jvm-memory-model-and-garbage-collection-monitoring-tuning
jstat -gc 27037 | tail -1 | awk '{ print $3 + $4 + $6 + $8}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment