我正在尝试发布我的服务的垃圾收集统计信息。其中很少有人在JDK 7上运行,而在JDK8上很少运行。
我已经在问题中读到:Can you get basic GC stats in Java?我们可以通过MBean获得总垃圾收集计数。但我试着看一下略有不同的画面。
我试图分别发布主要和次要收集计数。上述方法将获得总收集计数,而不是分为次要和主要。
我尝试过做什么?
List<GarbageCollectorMXBean> listOfGarbageCollectionMBeans = ManagementFactory.getGarbageCollectorMXBeans();
Stats majorGCStats= null;
Stats minorGcStats = null;
for (GarbageCollectorMXBean gcMBean: listOfGarbageCollectionMBeans ) {
Stats stats = new Stats();
// in the method isMajorCollector, trying to identify if the collector is for major or minor depending on pool name
if (isMajorCollector(gcMBean.getMemoryPoolNames())) {
majorGCStats= stats;
}
else{
minorGCStats= stats;
}
//Collection_MAP is a HashMap of minorGC vs Stats and majorGC vs Stats
COLLECTION_MAP.put(stats.getName(), stats);
}
public boolean isMajorCollector(String[] poolNames){
for (final String pool : pools) {
if (pool.contains("Perm")|| pool.contains("Old")) {
return true;
}
}
return false;
}
}
// An inner class to hold the time and name
class Stats{
private String name;
private long time;
public void setTime(final long time){
this.time= time;
}
public void setName(final String name){
this.name=name;
}
public String getName(){
return this.name;
}
public long getTime(){
return this.time;
}
}
我在列表中收集的收藏家是:PS Scavenge和PS MarkSweep。
对于PS Scavenge,游泳池名称为:PS Eden Space,PS Survivor Space。
对于PS MarkSweep,游泳池名称为:PS Eden Space,PS Survivor Space,PS Old Gen,PS Perm Gen
我正在使用的JVM参数:
-XX:+ UseParNewGC -XX:+ UseConcMarkSweepGC -XX:+ DisableExplicitGC。
没有任何使用,只能提及cmsinitiatingoccupancyfraction。
提前致谢。
答案 0 :(得分:1)
List<GarbageCollectorMXBean> gcMXBeans = ManagementFactory.getGarbageCollectorMXBeans();
System.out.println("Minor GC count = " + gcMXBeans.get(0).getCollectionCount());
System.out.println("Major GC count = " + gcMXBeans.get(1).getCollectionCount());
这适用于所有典型收集器的JDK 7和JDK 8: