blob: 6bfc6b6a401f7f6b62fd3f8a72f2563efa28545a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<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="/main.js"></script>
<script type="text/javascript">
google.load('visualization', '1.0', {'packages':['corechart']});
google.setOnLoadCallback(gras_stats_main);
</script>
</head>
<body>
<p id="tps">Default</p>
<div id="overall_charts" style="width:1000px;height:700px;"></div>
<div id="individual_charts"></div>
</body>
</html>
|