Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ pageContext.setAttribute("pageTitle", "Process info for PID: " + JSONMetricUtil.
<% } %>
</div>
<% for(MemoryPoolMXBean mp:mPools) {
if(mp.getName().contains("Cache")) continue;%>
// Skip code cache pools: "Code Cache" (JDK 8) and the segmented
// "CodeHeap '...'" pools introduced by JEP 197 in JDK 9+.
if(mp.getName().contains("Cache") || mp.getName().contains("CodeHeap")) continue;%>
<div class="container-fluid content">
<div class="row">
<div class="page-header">
Expand All @@ -141,7 +143,7 @@ if(mp.getName().contains("Cache")) continue;%>
</div>
<table class="table table-striped" width="90%" >
<tr>
<th>Commited</th>
<th>Committed</th>
<th>Init</th>
<th>Max</th>
<th>Used</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ pageContext.setAttribute("pageTitle", "Process info for PID: " + JSONMetricUtil.
<% } %>
</div>
<% for(MemoryPoolMXBean mp:mPools) {
if(mp.getName().contains("Cache")) continue;%>
// Skip code cache pools: "Code Cache" (JDK 8) and the segmented
// "CodeHeap '...'" pools introduced by JEP 197 in JDK 9+.
if(mp.getName().contains("Cache") || mp.getName().contains("CodeHeap")) continue;%>
<div class="container-fluid content">
<div class="row">
<div class="page-header">
Expand All @@ -148,7 +150,7 @@ if(mp.getName().contains("Cache")) continue;%>
</div>
<table class="table table-striped" width="90%" >
<tr>
<th>Commited</th>
<th>Committed</th>
<th>Init</th>
<th>Max</th>
<th>Used</th>
Expand Down