Merge pull request #566 from neeuq/feature/collector-modelization
java 8:(Perm Gen) split into (Compressed Class Space) and Metaspace
This commit is contained in:
commit
5aa7f78597
|
|
@ -30,7 +30,7 @@ public class CMSCollectorModule extends MemoryPoolModule {
|
|||
}
|
||||
|
||||
@Override protected String[] getPermNames() {
|
||||
return new String[] {"CMS Perm Gen"};
|
||||
return new String[] {"CMS Perm Gen", "Compressed Class Space"};
|
||||
}
|
||||
|
||||
@Override protected String[] getCodeCacheNames() {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public class G1CollectorModule extends MemoryPoolModule {
|
|||
}
|
||||
|
||||
@Override protected String[] getPermNames() {
|
||||
return new String[] {"G1 Perm Gen"};
|
||||
return new String[] {"G1 Perm Gen", "Compressed Class Space"};
|
||||
}
|
||||
|
||||
@Override protected String[] getCodeCacheNames() {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public class SerialCollectorModule extends MemoryPoolModule {
|
|||
}
|
||||
|
||||
@Override protected String[] getPermNames() {
|
||||
return new String[] {"Perm Gen"};
|
||||
return new String[] {"Perm Gen", "Compressed Class Space"};
|
||||
}
|
||||
|
||||
@Override protected String[] getCodeCacheNames() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue