54 строки
1.7 KiB
HTML
54 строки
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Stability Dashboard</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://d3js.org/d3.v3.min.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<script src="correlations.js" type="text/javascript"></script>
|
|
<script src="dashboard.js" type="text/javascript"></script>
|
|
<input type="checkbox" name="oom" id="oom" checked="checked"><label for="oom">Show OOM crashes</label>
|
|
<input type="checkbox" name="shutdownhang" id="shutdownhang"><label for="shutdownhang">Show shutdownhang crashes</label>
|
|
<input type="checkbox" name="flash" id="flash"><label for="flash">Show Flash-related crashes</label>
|
|
<br><br>
|
|
<label for="version">Version:</label>
|
|
<select name="version" id="version">
|
|
<option selected>release</option>
|
|
<option>beta</option>
|
|
<option>aurora</option>
|
|
<option>nightly</option>
|
|
<option>esr</option>
|
|
</select>
|
|
<label for="sortBy">Sort by:</label>
|
|
<select name="sortBy" id="sortBy">
|
|
<option selected>Number of users crashing</option>
|
|
<option>Number of crash reports</option>
|
|
</select>
|
|
<label for="crashesType">Crashes type:</label>
|
|
<select name="crashesType" id="crashesType">
|
|
<option selected>All crashes</option>
|
|
<option>Startup crashes</option>
|
|
</select>
|
|
<label for="graphType">Graph type:</label>
|
|
<select name="graphType" id="graphType">
|
|
<option selected>Crashes per usage hours</option>
|
|
<option>Crashes per ADI</option>
|
|
<option>Crashes per total crashes</option>
|
|
<option>Raw number of crashes</option>
|
|
</select>
|
|
<svg id="overallGraph"></svg>
|
|
<table id="table">
|
|
<tr>
|
|
<th>Rank</th>
|
|
<th>Users</th>
|
|
<th>Reports</th>
|
|
<th>Signature</th>
|
|
<th>Bug(s)</th>
|
|
<th>Evolution</th>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|