How to see memory usage of all scoped variables

Is there a chance to see how much memory is allocated by all cloud variables?

+3


source to share


2 answers


The best way is to use yourKit java profiler .



You can install the agent on the Domino server and then profile the JVM. This will give you the ability to look and see what is happening at runtime, see the runtime and see how many classes and instances are loaded and how much memory they are consuming.

+3


source


Not exactly what you asked, but it might help: enter the command tell http xsp heapdump

in the console. It will create a heapdump file in the Domino binaries directory. Open this file in the Heap Analyzer tool (http://www-01.ibm.com/support/docview.wss?uid=swg21190608), also available from the IBM Support Assistant (http://www-01.ibm. com / software / support / ish /).



0


source







All Articles