blob: 92178477dc81be9bfd9517c797b13056d4163446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>GRAS Status Monitor</title>
<link rel="stylesheet" type="text/css" href="/main.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="/registry.js"></script>
<script type="text/javascript" src="/utils.js"></script>
<script type="text/javascript" src="/charts.js"></script>
<script type="text/javascript" src="/main.js"></script>
<script type="text/javascript">
google.load('visualization', '1.0', {'packages':['corechart']});
google.setOnLoadCallback(gras_stats_main);
</script>
</head>
<body id='page'>
<h1>GRAS Status Monitor</h1>
<div id="overall_config">
<table>
<tr><th colspan="2">Throughput options</th></tr>
<tr>
<td colspan="2">Updates/sec: <input type="number" name="rate" min="1" max="10" size="4" /></td>
</tr>
<tr>
<td><label>Active?</label><input type="checkbox" name="active" /></td>
<td><label>Show?</label><input type="checkbox" name="show" /></td>
</tr>
</table>
</div>
<div id="block_enables">
<table>
<tr><th>Block enables</th></tr>
<tr><td></td></tr>
</table>
</div>
<div style="clear:both;"></div>
<div id="overall_chart">
<table>
<tr><th>Thoughput (MIps) per block vs time (seconds)</th></tr>
<tr>
<td></td>
</tr>
</table>
</div>
<div id="overall_chart_pie">
<table>
<tr><th>Overhead compare</th></tr>
<tr>
<td></td>
</tr>
</table>
</div>
<div id="per_block_charts">
</div>
</body>
</html>
|