76 lines
2.1 KiB
HTML
76 lines
2.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<!-- Copyright 2018 the V8 project authors. All rights reserved.
|
||
|
Use of this source code is governed by a BSD-style license that can be
|
||
|
found in the LICENSE file. -->
|
||
|
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>V8 Heap Statistics</title>
|
||
|
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
|
||
|
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
|
||
|
|
||
|
<link rel="import" href="details-selection.html">
|
||
|
<link rel="import" href="global-timeline.html">
|
||
|
<link rel="import" href="trace-file-reader.html">
|
||
|
|
||
|
<style type="text/css">
|
||
|
|
||
|
body {
|
||
|
font-family: 'Roboto', sans-serif;
|
||
|
margin-left: 5%;
|
||
|
margin-right: 5%;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
google.charts.load('current', {'packages':['line', 'corechart']});
|
||
|
|
||
|
function $(id) { return document.querySelector(id); }
|
||
|
|
||
|
function removeAllChildren(node) {
|
||
|
while (node.firstChild) {
|
||
|
node.removeChild(node.firstChild);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let state = Object.create(null);
|
||
|
|
||
|
function globalDataChanged(e) {
|
||
|
state.data = e.detail;
|
||
|
state.selection = null;
|
||
|
$('#global-timeline').selection = state.selection;
|
||
|
$('#global-timeline').data = state.data;
|
||
|
$('#type-details').selection = state.selection;
|
||
|
$('#type-details').data = state.data;
|
||
|
$('#details-selection').data = state.data;
|
||
|
}
|
||
|
|
||
|
function globalSelectionChangedA(e) {
|
||
|
state.selection = e.detail;
|
||
|
$('#global-timeline').selection = state.selection;
|
||
|
$('#type-details').selection = state.selection;
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<trace-file-reader onchange="globalDataChanged(event)"></trace-file-reader>
|
||
|
<h1>V8 Heap Statistics</h1>
|
||
|
<p>
|
||
|
Visualize object stats gathered using <code>--trace-gc-object-stats</code>.
|
||
|
Needs to be run on a web server (e.g. <code>python -m
|
||
|
SimpleHTTPServer</code>) due to HTML imports requiring CORS.
|
||
|
</p>
|
||
|
<details-selection id="details-selection" onchange="globalSelectionChangedA(event)"></details-selection>
|
||
|
<global-timeline id="global-timeline"></global-timeline>
|
||
|
<type-details id="type-details"></type-details>
|
||
|
</body>
|
||
|
|
||
|
</html>
|