Skip to content

Instantly share code, notes, and snippets.

@justdoit0823
Created January 15, 2021 15:33
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 justdoit0823/102156f1000e019aee810cb14a2caaf4 to your computer and use it in GitHub Desktop.
Save justdoit0823/102156f1000e019aee810cb14a2caaf4 to your computer and use it in GitHub Desktop.
Stat g1 eden heap size after gc in jvm8 with awk.
awk '/Eden:/ {split($2, a, ")"); split(a[2], b, "("); print substr(b[2], 1, length(b[2])-1)}' gc.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment