27 lines
609 B
PHP
27 lines
609 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Matt-Cloud Cosmostat</title>
|
|
|
|
|
|
<link rel="stylesheet" href="src/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h2>Matt-Cloud Cosmostat Dashboard</h2>
|
|
This dashboard shows the local Matt-Cloud system stats.<p>
|
|
</div>
|
|
<div class="card">
|
|
<h2>Live System Metrics</h2>
|
|
<div id="host_metrics" class="column">Connecting…</div>
|
|
</div>
|
|
|
|
|
|
<!-- Socket.IO client library -->
|
|
<script src="socket.io/socket.io.js"></script>
|
|
<!-- matt-cloud redis script -->
|
|
<script src="src/redis.js"></script>
|
|
|
|
</body>
|
|
</html> |