Skip to content

Instantly share code, notes, and snippets.

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 Inkimar/023d435641020bbfb5468e6818ad12a1 to your computer and use it in GitHub Desktop.
Save Inkimar/023d435641020bbfb5468e6818ad12a1 to your computer and use it in GitHub Desktop.
Wildfly - monitor java heap
https://stackoverflow.com/questions/51203969/how-to-monitor-java-heap-memory-usage-in-jboss-eap-production-server
You can use Jboss CLI to check JVM memory details,
Connect to the JBoss using CLI:
./jboss-cli.sh -c --controller=localhost:9999
Getting the JVM Memory details:
/core-service=platform-mbean/type=memory/:read-resource(recursive=true,proxies=true,include-runtime=true,include-defaults=true)
Or you can use JBoss management console,
Go to Runtime tab
Select JVM from Sytem status
Or you can use JConsole
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment