2023-03-11 08:54:24 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-03-11 13:49:39 -07:00
|
|
|
<title>CPU Stats</title>
|
2023-03-11 08:54:24 -07:00
|
|
|
<meta charset="utf-8">
|
2023-03-11 13:49:39 -07:00
|
|
|
<link rel="icon" href="portal.png">
|
2023-03-11 08:54:24 -07:00
|
|
|
<script src="stat.mjs" type="module"></script>
|
|
|
|
<style>
|
2023-03-11 13:26:33 -07:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#pie canvas {
|
2023-03-11 08:54:24 -07:00
|
|
|
max-width: 50px;
|
|
|
|
position: absolute;
|
2023-03-11 13:26:33 -07:00
|
|
|
}
|
|
|
|
#area canvas {
|
|
|
|
width: 100vw;
|
|
|
|
height: 99vh;
|
2023-03-11 08:54:24 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
2023-03-11 13:26:33 -07:00
|
|
|
<body data-autostat>
|
|
|
|
<div id="pie" class="pie chart"></div>
|
|
|
|
<div id="area" class="area chart"></div>
|
2023-03-11 08:54:24 -07:00
|
|
|
</body>
|
|
|
|
</html>
|