-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonitoring.html
More file actions
77 lines (75 loc) · 2.18 KB
/
monitoring.html
File metadata and controls
77 lines (75 loc) · 2.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lightning.space - Monitoring</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Courier New', Courier, monospace;
background: #0a0a0a;
color: #e0e0e0;
padding: 20px;
line-height: 1.5;
}
a { color: #4fc3f7; text-decoration: none; }
a:hover { text-decoration: underline; }
.header {
margin-bottom: 30px;
border-bottom: 1px solid #333;
padding-bottom: 15px;
}
.header h1 { font-size: 18px; color: #fff; }
.header .subtitle { font-size: 12px; color: #888; margin-top: 4px; }
.nav { margin-top: 8px; font-size: 12px; }
.section { margin-bottom: 30px; }
.section h2 {
font-size: 14px;
color: #4fc3f7;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
th, td {
text-align: left;
padding: 6px 12px;
border-bottom: 1px solid #222;
}
th {
color: #888;
font-weight: normal;
text-transform: uppercase;
font-size: 11px;
letter-spacing: 0.5px;
}
td { color: #ccc; }
td.number { text-align: right; font-variant-numeric: tabular-nums; }
th.number { text-align: right; }
tr:hover td { background: #151515; }
.positive { color: #66bb6a; }
.negative { color: #ef5350; }
.loading { color: #888; font-style: italic; padding: 20px 0; }
.error { color: #ef5350; padding: 20px 0; }
.timestamp { font-size: 11px; color: #555; margin-top: 20px; }
.token-list { font-size: 12px; color: #999; }
.token-item { margin-left: 12px; }
</style>
</head>
<body>
<div class="header">
<h1>lightning.space monitoring</h1>
<div class="subtitle" id="timestamp">Loading...</div>
<div class="nav"><a href="/">Home</a> | <a href="/swagger">Swagger</a></div>
</div>
<div id="content">
<div class="loading">Loading monitoring data...</div>
</div>
<script src="/monitoring/monitoring.js"></script>
</body>
</html>