blob: 3278b39a1aea0db3675b24164b756948d1ee7e67 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://arf20.com/style.css">
<title>ARFNET</title>
<style>
table, th, td {
border: 1px solid #abb2bf;
}
.graph {
border-collapse: collapse;
padding: 0px;
border: 0px;
height: 7pt;
}
.up {
background-color: green;
}
.down {
background-color: red;
}
td.w-min {
white-space: nowrap;
width: 1%;
}
td.w-last {
width: auto;
}
</style>
</head>
<body>
<header><a href="http://arf20.com">
<img src="http://arf20.com/arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span>
</a></header>
<hr>
<main>
<h2 class="center">Status Monitor</h2>
<p>This webapp monitors the status of the main ARFNET services from outside the ARFNET network</p>
<span>Services</span><span style="float: right;">Current time (UTC): %s</span>
<table width="100%">
<tr><th>Type</th><th>Service</th><th>Status</th><th>Uptime</th><th>%%up month</th><th>%%up total</th><th>Timeline (week)</th></tr>
%s
</table>
<br><br>
Incidents
<table>
<tr><th>Service</th><th>Resolved</th><th>Started</th><th>Duration</th></tr>
%s
</table>
</main>
</body>
</html>
|