Add metrics_visualization/index.html
This commit is contained in:
commit
4e731747d8
1 changed files with 82 additions and 0 deletions
82
metrics_visualization/index.html
Normal file
82
metrics_visualization/index.html
Normal file
|
|
@ -0,0 +1,82 @@
|
||||||
|
<!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>
|
||||||
Loading…
Reference in a new issue