Skip to content

Commit

Permalink
Moving gc timeSummary to gc time (#59)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Colegate <[email protected]>
  • Loading branch information
mattcolegate authored Mar 2, 2020
1 parent bc80658 commit e511b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ <h4 class="modal-title" font-color=black>Heap Snapshot</h4>
socket.on('gc', function(data) {
updateGCData(data);
let json = JSON.parse(data);
summary.gc.time = json.timeSummary;
summary.gc.time = json.time;
summary.gc.usedHeapAfterGCMax = json.usedHeapAfterGCMax;
updateSummaryTable();
});
Expand Down

0 comments on commit e511b0d

Please sign in to comment.