forked from circa10a/device-monitor-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (120 loc) · 4.88 KB
/
index.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<META HTTP-EQUIV="refresh" CONTENT="60">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="js/noty/lib/noty.css">
<script type="text/javascript" src="js/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/circle-progress/circle-progress.min.js"></script>
<script type="text/javascript" src="js/noty/lib/noty.min.js"></script>
<title>Monitor Dashboard</title>
</head>
<body>
<div id="circle"><strong></strong></div>
<script>
$('#circle').circleProgress({
value: "0.0",
size: 350,
thickness: 6,
emptyFill: "#262b33",
fill: {
color: ["#0AB0DE"]
}
}).on('circle-animation-progress', function(event, progress, stepValue) {
$(this).children('strong').text((stepValue * 100).toFixed(0) + '%');
});
</script>
<script type="text/javascript" src="js/circleColor.js"></script>
<script type="text/javascript" src="js/circleSize.js"></script>
<script type="text/javascript" src="js/notifications.js"></script>
<div class="table-title">
<h3>SOC Health-Check Report</h3>
</div>
<script>
new Noty({
text: "Report created " + "03/23/2021 11:32:03",
type: 'notification',
theme: 'mint',
closeWith: ['click'],
progressBar: true,
timeout: 10000,
animation: {
open: 'animated bounceInRight',
close: 'animated bounceOutRight',
easing: 'swing',
}
}).show();
</script>
<div class="table-title">
<h3></h3>
</div>
<table class="table-fill">
<thead>
<tr>
<th width="10%" class="text-left">DNS</th>
<th width="35%" class="text-center">Status</th>
<th width="10%" class="text-left">IP</th>
<th width="10%" class="text-center">OS</th>
</tr>
</thead>
<tbody class="table-hover">
<tr>
<td onClick="window.open('None')";class="text-left">win10-vm-x86.lan</td>
<td><div class="led-red"></div></td>
<td class="text-left">192.168.1.112</td>
<td class="text-left">Unknow</td>
</tr>
<tr>
<td onClick="window.open('None')";class="text-left">rompemuro.lan</td>
<td><div class="led-red"></div></td>
<td class="text-left">192.168.1.218</td>
<td class="text-left">Unknow</td>
</tr>
<tr>
<td onClick="window.open('None')";class="text-left">Unknow</td>
<td><div class="led-red"></div></td>
<td class="text-left">192.168.1.1</td>
<td class="text-left">Unknow</td>
</tr>
</tbody>
</table>
<br/>
<br/>
<br/>
<br/>
<div class="table-title">
<h3>SOC Websites</h3>
</div>
<table class="table-fill">
<thead>
<tr>
<th width="10%" class="text-left">SOC Websites</th>
<th width="35%" class="text-center">Status</th>
<th width="10%" class="text-center">Port 80</th>
<th width="10%" class="text-center">Port 443</th>
</tr>
</thead>
<tbody class="table-hover">
<tr>
<td>192.168.1.3</td>
<td><div class="led-green"></div></td>
<td>200</td>
<td>200</td>
</tr>
<tr>
<td>127.0.0.1</td>
<td><div class="led-green"></div></td>
<td>200</td>
<td>200</td>
</tr>
<tr>
<td>www.cantv.com.ve</td>
<td><div class="led-green"></div></td>
<td>200</td>
<td>200</td>
</tr>
</tbody>
</table>
</body>
</html>