This article consists ofimportnew - lomoxy translated from javapapers. Directory
- Introduction to Garbage collection
- How does garbage collection work?
- Categories of garbage collection
- Garbage collection Monitoring and analysis
In this Java GC Series tutorial, let's learn about tools for garbage collection monitoring and analysis. Then, choose a tool to monitor the garbage collection process for a Java sample program. If you are a beginner, you'd better read this series of tutorials carefully. You can start here (garbage collection Introduction).
Java GC
Monitoring and analysis tools
Here are some of the tools available, each with its own strengths and weaknesses. We can improve the performance of our applications by selecting the right tools and analyzing them. In this tutorial, we use Java VisualVM.
- Java VisualVM
- Naarad
- Gcviewer
- IBM Pattern Modeling and Analysis Tool for Java garbage Collector
- Hpjmeter
- IBM monitoring and Diagnostic Tools for Java-garbage Collection and Memory
- Visualizer
- Verbose GC Analyzer
Java VisualVM
Java VISUALVM is free to use and requires the Java SE SDK to be installed. Take a look at the Java JDK in the Bin folder (path: \java\jdk1.8.0\bin), which has a lot of javac and Java tools, JVISUALVM is one of them.
Java VISUALVM can be used to:
- Generate and analyze memory dumps for the heap;
- Observe and operate on the Mbeans;
- Monitor garbage collection;
- Memory and CPU performance analysis;
1.
Start
VisualVM
JVISUALVM is located in the JDK Bin folder and can be clicked directly.
2.
Installation Visualization
GC
Plugins
We need to install a visual GC plug-in so that we have a good visual sense of the Java GC process.
3. Monitoring
GC
Now, it is time to monitor the garbage collection process, open your Java program, it will automatically be detected and displayed to the Java VISUALVM interface, the left "application" (application) window, "local" (native node), All locally run Java programs will be listed.
Java VISUALVM is a Java application, so it is also listed, and the tutorial is intended to use VISUALVM to monitor its own GC process.
Double-click the VISUALVM icon under Local.
Now, the Program Monitoring window opens on the right, which has many different tab pages about the monitoring index of the application's performance, so far, we are most interested in "Visual GC", click on it.
The above picture shows the space utilization on old, Eden, S0, and S1, showing the distribution and release of each part of the space. It maintains a continuous refresh at the specified refresh rate.
The picture above shows the normal running program, which is clearly displayed in the chart when there is a memory leak or abnormal behavior. At least we can understand that he is related to object memory allocation and garbage collection. Then, with the help of Other tab pages (like "Threads") and thread dump, we can reduce the problem.
In the Monitor tab, we are able to monitor and periodically display all heap memory usage graphs. The Perform GC button enables you to start the garbage collection process.
In the "Sampler" tab page, we are able to start memory and CPU profiling, which will show detailed real-time reports used by each instance, which will help us identify performance issues.
This tutorial is the last of our four series of Java garbage collection tutorials.
Original link: javapapers translation: importnew.com - Lomoxy
Link: http://www.importnew.com/13838.html
Java GC Series (4): Garbage collection Monitoring and analysis