22 lines
737 B
HTML
22 lines
737 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="refresh" content="5"> <!-- Fallback auto-refresh -->
|
|
<title>Node Monitor Logs - {{ service_uuid }}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="header-container">
|
|
<h1>Node Monitor Logs</h1>
|
|
<p>Service UUID: <code>{{ service_uuid }}</code></p>
|
|
<p>Total Logs: <span id="log-count">0</span> (Auto-refreshing every 5 seconds)</p>
|
|
</div>
|
|
<div id="log-table-container">
|
|
<p class="loading-message">Loading logs...</p>
|
|
</div>
|
|
<script src="/static/logs.js"></script>
|
|
</body>
|
|
</html>
|