-
Notifications
You must be signed in to change notification settings - Fork 1
/
realtime.html
27 lines (27 loc) · 1.34 KB
/
realtime.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" >
<title>HSM Real Time Display</title>
<link href="graph-style.css" type="text/css" rel="stylesheet"/>
<script src ="node_modules/flot-latest/jquery.js"></script>
<script src ="node_modules/flot-latest/jquery.flot.js"></script>
<script src ="node_modules/flot-latest/jquery.flot.time.js"></script>
<script src ="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src ="https://cdnjs.cloudflare.com/ajax/libs/flot/0.8.3/jquery.flot.min.js"></script>
<script src ="https://cdnjs.cloudflare.com/ajax/libs/flot/0.8.3/jquery.flot.time.min.js"></script>
<script id="dataTarget" src ="plot_target_place_holder.js"></script>
<script src="realtimeScript.js"></script>
</head>
<body>
<div style="text-align: center; margin-left: auto; margin-right: auto">
<h2>HSM Real Time Measurements (bytes)</h2>
<div id="placeholder" style="width:1000px;height:500px;margin-left:auto;margin-right:auto">
</div>
<h2>Time (seconds from boot)</h2>
<h3 id="rawData">---</h3>
</div>
<div id="legend" style="width:250px;height:250px;padding:30px">
</div>
</body>
</html>