-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
134 lines (130 loc) · 3.72 KB
/
index.php
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
require 'autoload.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/frontend.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-Knob/1.2.13/jquery.knob.min.js"></script>
<script src="js/esm.js" type="text/javascript"></script>
<script>
$(function(){
esm.getAll();
setInterval(function(){ esm.getAll(); }, 5000);
});
</script>
<style type="text/css"> body { background:none transparent; } </style>
</head>
<body>
<div id="main-container">
<div class="box column-left" id="esm-system">
<div class="box-header">
<h1>System</h1>
</div>
<div class="box-content">
<table class="firstBold">
<tbody>
<tr>
<td>Uptime</td>
<td id="system-uptime"></td>
</tr>
<tr>
<td>Memory</td>
<td id="system-memory"></td>
</tr>
<tr>
<td>Swap</td>
<td id="system-swap"></td>
</tr>
<tr>
<td>CPU 1/5/15</td>
<td id="system-load"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="box column-left" id="esm-disk">
<div class="box-header">
<h1>Disk</h1>
</div>
<div class="box-content">
<table>
<thead>
<tr>
<th>Filesystem</th>
<th>Free</th>
<th>Total</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<?php if(getenv("DOCKERSTATS") !== false){ ?>
<div class="box column-right" id="esm-docker">
<div class="box-header">
<h1>Docker</h1>
</div>
<div class="box-content">
<table>
<thead>
<tr>
<th>Name</th>
<th>CPU</th>
<th>Memory</th>
<th>Network</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<?php } ?>
<?php if(getenv("JELLYFINAPI") !== false){ ?>
<div class="box column-right" id="esm-streams">
<div class="box-header">
<h1>Streams</h1>
</div>
<div class="box-content">
<table>
<thead>
<tr>
<th>User</th>
<th>Media</th>
<th>Transcode</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<?php } ?>
<?php if(getenv("QBITTORRENTURL") !== false){ ?>
<div class="box column-right" id="esm-downloads">
<div class="box-header">
<h1>Downloads</h1>
</div>
<div class="box-content">
<table>
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Speed</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<?php } ?>
</div>
</body>
</html>