34 lines
804 B
HTML
34 lines
804 B
HTML
<!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="container">
|
|
<h2>Matt-Cloud Cosmostat Dashboard</h2>
|
|
This dashboard shows the local Matt-Cloud system stats.<p>
|
|
</div>
|
|
<div class="container">
|
|
<h2>System Stats</h2>
|
|
<div id="host_stats" class="column">Connecting…</div>
|
|
</div>
|
|
|
|
<!--
|
|
Here will go the graphs once i have all the stats first
|
|
<div class="container">
|
|
<h2>System Graphs</h2>
|
|
<div id="host_graphs" 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> |