feat: highlight slow samples

This commit is contained in:
əlemi 2024-12-01 04:36:31 +01:00
parent 305622811a
commit d2b42feab4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -29,8 +29,11 @@
margin-bottom: 0; margin-bottom: 0;
line-height: 1rem; line-height: 1rem;
} }
span.cell.empty { span.cell.warning {
border: 1px solid var(--accent); border-color: var(--accent);
}
span.cell.error {
border-color: var(--accent);
background-color: rgba(var(--accent-rgb), 0.4); background-color: rgba(var(--accent-rgb), 0.4);
} }
hr.color { hr.color {
@ -58,10 +61,14 @@
<script> <script>
function cell(timestamp, rtt) { function cell(timestamp, rtt) {
let d = new Date(timestamp * 1000); let d = new Date(timestamp * 1000);
let warning = "";
if (rtt !== null && rtt >= 1000) {
warning = " warning";
}
if (rtt === null) { if (rtt === null) {
return `<span class="cell empty" title="${d}"></span>`; return `<span class="cell error" title="${d}"></span>`;
} else { } else {
return `<span class="cell" title="${rtt}ms -- ${d}">${rtt}</span>`; return `<span class="cell${warning}" title="${rtt}ms -- ${d}">${rtt}</span>`;
} }
} }