A really simple way to visualize garbage collection details from your Node.js application is to capture the data to file and then load that data in by using the free Garbage Collection and Memory Visualizer software http://www.ibm.com/developerworks/java/jdk/tools/gcmv/
GCMC is available to install from the Eclipse Marketplace with details in the link above Online documentation is availbable here http://www-01.ibm.com/support/knowledgecenter/SS3KLZ/com.ibm.java.diagnostics.visualizer.doc/homepage/plugin-homepage-gcmv.html To capture the data, use the --trace_gc command-line parameter to generate garbage collection data and pipe to a file. You can additionally specify either the --trace_gc_nvp or --trace_gc-verboseparameters to generate more detailed, single-line or multiple-line information. Once you have the data, load it into GCMV and it will tell you all about the garbage collection activity of you application. If you need any help or more information, please let me know Toby On Wednesday, January 6, 2016 at 6:04:07 AM UTC, suman kumar wrote: > > I am working on a Node js APM solution and want to capture the garbage > collection details such as GC time and type of GC..any idea how to achieve > this through Node js instrumentation? > -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/77f2060d-d6b0-4b64-ba01-60681d693371%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
