-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.32 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Server Dashboard</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Quicksand:400' rel='stylesheet' type='text/css'>
<script src="monitor.js"></script>
<link href='monitor.css' rel='stylesheet' type='text/css'>
</head>
<body class="black">
<div class="wrapper">
<div id='cpuUsage' class="box orange">
<span class="title">CPU Usage</span>
<span class="value"></span>
</div>
<div id='cpuCount' class="box orangered">
<span class="title">CPU Count</span>
<span class="value"></span>
</div>
<div id='serverLoad' class="box full green">
<span class="title">Load Average</span>
<span class="value"></span>
</div>
<div id='freeRam' class="box purple">
<span class="title">Free RAM</span>
<span class="value"></span>
</div>
<div id='diskFreeSpace' class="box blue">
<span class="title">Disk Usage</span>
<span class="value"></span>
</div>
<div id='networkReceived' class="box grey">
<span class="title">Data Received</span>
<span class="value"></span>
</div>
<div id='networkSent' class="box pink">
<span class="title">Data Sent</span>
<span class="value"></span>
</div>
</div>
</body>
</html>