-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus_page_template.html
63 lines (63 loc) · 1.71 KB
/
status_page_template.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8" />
<title>OpenML Status</title>
<meta name="description" content="Regular status updates on OpenML services" />
<link rel="icon" href="favicon.ico" />
<link href="style.css" rel="stylesheet"/>
</head>
<body class="flex-column">
<nav>
<p style="font-size:1.5em;padding: 0.25em 0em;">
<img src="favicon.ico" style="display:inline;text-align: center; vertical-align: middle;"/>
OpenML
</p>
</nav>
<div class="centered-column card-container">
<div class="card">
<div>
<strong>Website</strong>
<p>${WEBSITE_STATUS}</p>
</div>
<p class="align-right">${WEBSITE_STATUS_ICON}</p>
</div>
<div class="card">
<div>
<strong>REST API</strong>
<p>${REST_STATUS}</p>
</div>
<p class="align-right">${REST_STATUS_ICON}</p>
</div>
<div class="card">
<div>
<strong>S3 Data Storage</strong>
<p>${MINIO_STATUS}</p>
</div>
<p class="align-right">${MINIO_STATUS_ICON}</p>
</div>
<div class="card">
<div>
<strong>Elastic Search</strong>
<p>${ES_STATUS}</p>
</div>
<p class="align-right">${ES_STATUS_ICON}</p>
</div>
<div class="card">
<div>
<strong>Test Server</strong>
<p>${TEST_STATUS}</p>
</div>
<p class="align-right">${TEST_STATUS_ICON}</p>
</div>
</div>
<footer class="align-bottom ">
<div class="centered-column footer-container">
<a href="https://github.com/openml/status" target="_blank">Source Code</a>
<p >
Last updated ${TIMESTAMP} UTC.
</p>
</div>
</footer>
</body>
</html>