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:
吴晟 Wu Sheng 2017-11-02 11:37:28 +08:00 committed by GitHub
commit 5aa7f78597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {