-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmonitor.html
87 lines (84 loc) · 2.84 KB
/
monitor.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<title>XMRig Monitor</title>
<link rel="icon" href="media/favicon.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="media/monitor.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="variables.js"></script>
</head>
<body>
<div class="monitor">
<div class="version">Algorithm: <span id="algo"></span> | Worker: <span id="worker_id"></span></div>
<div class="header">XMRig <b><span id="version"></span></b> <span id="ua" class="smaller"></span></div>
<h4>Hashrate by thread</h4>
<div class="data">
<table>
<tbody id="gpu">
<th>Thread ID</th>
<th>10s</th>
<th>60s</th>
<th>15m</th>
</tbody>
</table>
</div>
<h4>Results</h4>
<div class="data">
<table>
<tbody>
<tr>
<th>Difficulty:</th>
<td id="diff_current"></td>
</tr>
<tr>
<th>Good results:</th>
<td id="results"></td>
</tr>
<tr>
<th>Average time:</th>
<td id="avg_time"></td>
</tr>
<tr>
<th>Error log:</th>
<td id="error_log_r"></td>
</tr>
</tbody>
</table>
</div>
<h4>Connection</h4>
<div class="data">
<table>
<tbody>
<tr>
<th>Pool:</th>
<td id="pool"></td>
</tr>
<tr>
<th>Uptime:</th>
<td id="uptime"></td>
</tr>
<tr>
<th>Ping:</th>
<td id="ping"></td>
</tr>
<tr>
<th>Failures:</th>
<td id="failures"></td>
</tr>
<tr>
<th>Error log:</th>
<td id="error_log_c"></td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
Connected at: <span id="api"></span>
<br /> Auto-refresh timer set to: <span id="timer"></span>
<br /> Hashrate alarm (10s) set to: <span id="alarm"></span>
<br /> Version: 0.2
</div>
</div>
<script src="functions.js"></script>
</body>
</html>