-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
46 lines (43 loc) · 1.14 KB
/
dashboard.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>EM Dashboard</title>
<link rel="stylesheet" type="text/css" href="gomoku/src/css/dashboard.css">
</head>
<body>
<h2>UPDATE TIME</h2>
<p id="update-time"></p>
<h2>SYSTEM STATUS</h2>
<div id="system-status-gauge-wrapper">
<div class="gauge" id="rss-gauge"></div>
<div class="gauge" id="vsz-gauge"></div>
<div class="gauge" id="thread-gauge"></div>
</div>
<h2 id="ai-status-title">AI STATUS</h2>
<table border="2">
<thead>
<tr class="header-row">
<th>id</th>
<th>Last Alive Time</th>
</tr>
</thead>
<tbody>
<tr class="ai-row">
<td class="index">N/A</td>
<td class="timestamp">N/A</td>
</tr>
<tr class="ai-row">
<td class="index">N/A</td>
<td class="timestamp">N/A</td>
</tr>
<tr class="ai-row">
<td class="index">N/A</td>
<td class="timestamp">N/A</td>
</tr>
</tbody>
</table>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="gomoku/src/js/dashboard.js"></script>
</body>
</html>