82 lines
No EOL
2.6 KiB
HTML
82 lines
No EOL
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Exit-Metriken Dashboard</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="app-header" role="banner">
|
|
<h1>Exit-Metriken Analyse</h1>
|
|
<div class="header-controls" role="group" aria-label="Filter-Steuerung">
|
|
<label for="filter-type">Filter:</label>
|
|
<select id="filter-type" name="filter-type" aria-label="Run-Filter">
|
|
<option value="">Alle</option>
|
|
<option value="pinned">Pinned</option>
|
|
<option value="unpinned">Unpinned</option>
|
|
</select>
|
|
<label for="setup-fingerprint">Setup Fingerprint:</label>
|
|
<input type="text" id="setup-fingerprint" name="setup-fingerprint" placeholder="ID eingeben">
|
|
<button id="apply-filters" type="button">Anwenden</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<aside class="filters-panel" role="complementary" aria-label="Filter Panel">
|
|
<form id="filters-form">
|
|
<fieldset>
|
|
<legend>Run-Filter</legend>
|
|
<label>
|
|
<input type="radio" name="run-filter" value="all" checked>
|
|
Alle
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="run-filter" value="pinned">
|
|
Pinned
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="run-filter" value="unpinned">
|
|
Unpinned
|
|
</label>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Setup Fingerprint</legend>
|
|
<input type="text" id="filter-setup-fingerprint" name="setup_fingerprint" placeholder="Fingerprint">
|
|
<button type="submit">Filter anwenden</button>
|
|
</fieldset>
|
|
</form>
|
|
</aside>
|
|
|
|
<section class="metrics-chart chart-panel" role="region" aria-label="Diagrammansicht der Exit-Metriken">
|
|
<h2>Visualisierung</h2>
|
|
<div id="chart-container" aria-live="polite"></div>
|
|
</section>
|
|
|
|
<section class="metrics-table" role="region" aria-label="Tabellarische Ansicht">
|
|
<h2>Metrikdaten</h2>
|
|
<table id="metrics-table-data">
|
|
<thead>
|
|
<tr>
|
|
<th>Run ID</th>
|
|
<th>Setup Fingerprint</th>
|
|
<th>Warn Rate</th>
|
|
<th>Unknown Rate</th>
|
|
<th>Δt < 0</th>
|
|
<th>Timestamp</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Dynamisch durch JS befüllt -->
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="app-footer" role="contentinfo">
|
|
<p>© 2026 Donau2Space.de</p>
|
|
</footer>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
</body>
|
|
</html> |