upp/web/index.html

146 lines
3.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link crossorigin rel="stylesheet" href="https://cdn.alemi.dev/web/alemi.css">
<title>uppe.rs</title>
<style>
span.cell {
2024-12-03 01:24:23 +01:00
position: relative;
display: inline-block;
2024-12-03 01:24:23 +01:00
width: .5rem;
height: 1.2rem;
border: 1px solid var(--secondary);
2024-12-03 01:24:23 +01:00
font-size: 8pt;
line-height: 1.2rem;
background-color: rgba(var(--secondary-rgb), 0.4);
2024-12-03 01:24:23 +01:00
margin-top: .3rem;
margin-bottom: .3rem;
padding-top: 0;
padding-bottom: 0;
transition: .1s;
text-align: center;
cursor: default;
2024-12-03 01:24:23 +01:00
border-radius: .3rem;
color: #ffffff00;
}
span.cell:hover {
2024-12-03 01:24:23 +01:00
padding-top: .3rem;
padding-bottom: .3rem;
width: 2rem;
font-size: 8pt;
margin-top: 0;
margin-bottom: 0;
2024-12-03 01:24:23 +01:00
margin-right: -0.75rem;
margin-left: -0.75rem;
color: var(--background);
background-color: rgba(var(--secondary-rgb), 1);
z-index: 1;
font-weight: bold;
}
2024-12-01 04:36:31 +01:00
span.cell.warning {
border-color: var(--accent);
}
span.cell.error {
border-color: var(--accent);
background-color: rgba(var(--accent-rgb), 0.4);
}
2024-12-03 01:24:23 +01:00
span.cell.error:hover {
background-color: rgba(var(--accent-rgb), 1);
}
hr.color {
color: var(--accent);
border-color: var(--accent);
}
hr.separator {
margin: 2em;
}
2024-12-03 01:24:23 +01:00
div.card {
display: inline-block;
white-space: nowrap;
2024-12-03 01:24:23 +01:00
overflow-x: scroll;
max-width: 100%;
margin-top: 2em;
border-radius: 1em;
border: 1px solid var(--background-secondary);
padding: 1em;
box-sizing: border-box;
transition: .3s;
}
div.card:hover {
background-color: var(--background-dim);
}
</style>
</head>
<body>
2024-12-03 02:32:39 +01:00
<div class="ma-1">
<h1>uppe.rs</h1>
<p>%%DESCRIPTION%%</p>
</div>
<hr class="color"/>
2024-12-03 01:24:23 +01:00
<small style="display: block" class="rev">now --&gt;</small>
<main id="uppe-rs-content">
</main>
</body>
<script>
function cell(timestamp, rtt) {
let d = new Date(timestamp * 1000);
2024-12-01 04:36:31 +01:00
let warning = "";
2024-12-03 01:58:49 +01:00
if (rtt !== null && rtt >= %%THRESHOLD%%) {
2024-12-01 04:36:31 +01:00
warning = " warning";
}
if (rtt === null) {
2024-12-03 01:24:23 +01:00
return `<span class="cell error" title="${d}"></span>`;
} else {
2024-12-01 04:36:31 +01:00
return `<span class="cell${warning}" title="${rtt}ms -- ${d}">${rtt}</span>`;
}
}
2024-12-02 23:44:27 +01:00
function card(key, history, last_rtt) {
let bar = "";
for (let el of history) {
bar += cell(el[0], el[1]);
}
return `<div class="card">
2024-12-03 01:24:23 +01:00
<h3 class="mt-0">${key} <code class="color">${last_rtt ? last_rtt + 'ms' : 'DOWN'}</code></h3>
<div class="box">
2024-12-03 01:24:23 +01:00
${bar}
</div>
2024-12-03 01:24:23 +01:00
</div>`;
}
let main = document.getElementById("uppe-rs-content");
async function updateStatus() {
let res = await fetch("/api/status")
let status = await res.json()
2024-12-03 01:24:23 +01:00
if (status.error) {
console.error("server error:", status);
return;
}
let keys = Object.keys(status);
keys.sort();
let out = "";
for (let key of keys) {
2024-12-02 23:48:31 +01:00
let res = await fetch(`/api/status/${key}?limit=120`);
let history = await res.json();
2024-12-02 23:44:27 +01:00
out += card(key, history, status[key]);
2024-12-03 01:24:23 +01:00
out += "\n";
}
main.innerHTML = out;
}
setInterval(updateStatus, 60 * 1000)
updateStatus()
</script>
</html>