-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmonitor-proxy.html
81 lines (78 loc) · 2.65 KB
/
monitor-proxy.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
<html>
<head>
<title>XMRig Monitor (Proxy)</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">id: <span id="id"></span> | Proxy 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 totals</h4>
<div class="data">
<table>
<tbody>
<th>10m</th>
<th>60m</th>
<th>12h</th>
<th>24h</th>
<tr>
<td id="tot10"></td>
<td id="tot60"></td>
<td id="tot12"></td>
<td id="tot24"></td>
</tr>
</tbody>
</table>
</div>
<h4>Results</h4>
<div class="data">
<table>
<tbody>
<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>Proxy Connection</h4>
<div class="data">
<table>
<tbody>
<tr>
<th>Miners:</th>
<td id="miners"></td>
</tr>
<tr>
<th>Uptime:</th>
<td id="uptime"></td>
</tr>
<tr>
<th>Latency:</th>
<td id="ping"></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 (60m) set to: <span id="alarm"></span>
<br /> Version: 0.2
</div>
</div>
<script src="functions-proxy.js"></script>
</body>
</html>