-
Notifications
You must be signed in to change notification settings - Fork 0
/
status.html
129 lines (113 loc) · 4.97 KB
/
status.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<link href="status.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="status.css">
<link rel="stylesheet" type="text/css" href="fa.all.min.css">
<title>EESSI status</title>
</head>
<script>
function open_close(myid) {
var el = document.getElementById(myid);
if (el.style.display == "none" || el.style.display == '' ) {
el.style.display = 'block';
} else {
el.style.display = 'none';
}
}
</script>
<body>
<div class="header-row">
<div class="header-text">
<div class="content">
<h1 class="content-left">EESSI :: Status</h1>
<img class="content-right inline" src="https://www.eessi-hpc.org/wp-content/uploads/2020/06/eessi-512px.png" width="75px" />
</div>
</div>
</div>
<div class="content-row">
<div class="overall">
<div class="status-degraded fas fa-minus-square overall-info"></div>
<h1>Degraded</h1>
<p class="overall-description">EESSI services are operational and may be used as expected, but performance may be affected.</p>
</div>
<div class="legend">
<span class="status-ok fas fa-check"> Normal service</span>
<span class="status-degraded fas fa-minus-square"> Degraded</span>
<span class="status-warning fas fa-exclamation-triangle"> Warning</span>
<span class="status-failed fas fa-times-circle"> Failed</span>
<span class="status-maintenance fas fa-hammer"> Maintenance</span>
</div>
<div class="content-left">
<div class="infobox">
<div class="infoblock stratum0" onclick='open_close("stratum0")'>
<span class="fas fa-database infobox-icon"></span>
<h2>Stratum0</h2>
<div class="content-right"><span class="infoblock-statusicon status-ok fas fa-check"></span></div>
</div>
<div id="stratum0" class="expanded" onclick='open_close("stratum0")'>
<ul class="details">
<li>Version: 355</li>
<ul>
</div>
</div>
<div class="infobox">
<div class="stratum1 infoblock" onclick='open_close("stratum1")'>
<span class="fas fa-project-diagram infobox-icon"></span>
<h2>Stratum1 network</h2>
<div class="content-right"><span class="infoblock-statusicon status-degraded fas fa-minus-square"></span></div>
</div>
<div id="stratum1" class="expanded" onclick='open_close("stratum1")'>
<table class="details">
<tr>
<th class="main"></th>
<th class="updates">Updates</th>
<th class="geoapi">GeoAPI</th>
</tr>
<tr>
<td class="main">rug-nl</td>
<td class="updates"><span class="status-ok fas fa-check"></span></td>
<td class="geoapi"><span class="status-warning fas fa-exclamation-triangle"></span></td>
</tr>
<tr>
<td class="main">bgo-no</td>
<td class="updates"><span class="status-ok fas fa-check"></span></td>
<td class="geoapi"><span class="status-failed fas fa-times-circle"></span></td>
</tr>
</table>
</div>
</div>
</div>
<div class="content-right">
<div class="infobox">
<div class="repositories infoblock" onclick='open_close("repositories")'>
<span class="fas fa-folder-open infobox-icon"></span>
<h2>Repositories</h2>
<div class="content-right"><span class="infoblock-statusicon status-warning fas fa-exclamation-triangle"></span></div>
</div>
<div id="repositories" class="expanded" onclick='open_close("repositories")'>
<table class="details">
<tr>
<th class="main"></th>
<th class="updates">Version</th>
<th class="geoapi">Updates</th>
</tr>
<tr>
<td class="main">pilot</td>
<td class="updates"><span class="status-ok fas fa-check"></span></td>
<td class="geoapi"><span class="status-warning fas fa-exclamation-triangle"></span></td>
</tr>
<tr>
<td class="main">ci</td>
<td class="updates"><span class="status-ok fas fa-check"></span></td>
<td class="geoapi"><span class="status-failed fas fa-times-circle"></span></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>