37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gurt Stats Dashboard</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Gurt Internal Stats</h1>
|
|
<p>Last Updated: <span id="last-updated">Never</span></p>
|
|
<div id="stats-container">
|
|
<div class="stats-section" id="runtime-stats">
|
|
<h2>Runtime</h2>
|
|
<!-- Runtime stats will be populated here -->
|
|
</div>
|
|
<div class="stats-section" id="memory-stats">
|
|
<h2>Memory</h2>
|
|
<!-- Memory stats will be populated here -->
|
|
</div>
|
|
<div class="stats-section" id="api-stats">
|
|
<h2>API Stats</h2>
|
|
<!-- API stats will be populated here -->
|
|
</div>
|
|
<div class="stats-section" id="tool-stats">
|
|
<h2>Tool Stats</h2>
|
|
<!-- Tool stats will be populated here -->
|
|
</div>
|
|
<div class="stats-section" id="config-stats">
|
|
<h2>Config Overview</h2>
|
|
<!-- Config stats will be populated here -->
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|