Skip to content

Commit 31d5e84

Browse files
committed
ignore ConcurrentMarkSweep gc locker message (issue #83)
1 parent ea1fea8 commit 31d5e84

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/tagtraum/perf/gcviewer/imp/DataReaderSun1_6_0.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public class DataReaderSun1_6_0 extends AbstractDataReaderSun {
7070
private static final String TIMES_ALONE = " [Times";
7171
private static final String FINISHED = "Finished"; // -XX:PrintCmsStatistics=2
7272
private static final String CARDTABLE = " (cardTable: "; // -XX:PrintCmsStatistics=2
73+
private static final String GC_LOCKER = "GC locker: Trying a full collection because scavenge failed";
7374
private static final List<String> EXCLUDE_STRINGS = new LinkedList<String>();
7475

7576
static {
@@ -81,6 +82,7 @@ public class DataReaderSun1_6_0 extends AbstractDataReaderSun {
8182
EXCLUDE_STRINGS.add(TIMES_ALONE);
8283
EXCLUDE_STRINGS.add(FINISHED);
8384
EXCLUDE_STRINGS.add(CARDTABLE);
85+
EXCLUDE_STRINGS.add(GC_LOCKER);
8486
}
8587

8688
private static final String EVENT_YG_OCCUPANCY = "YG occupancy";

0 commit comments

Comments
 (0)