-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 917 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/assets/css/style.css" rel="stylesheet">
</head>
<body>
<div>
<h2>system status</h2>
<p>this site tracks devices listed below and reports basic status info every minute</p>
<p>currently serving revison [<a href="https://github.com/chebro/systat/tree/{{.Version}}">{{.Version}}</a>] of [<a href="https://github.com/chebro/systat">systat</a>]</p>
<ol>
{{ range .Devices }}
<li id="{{.Hostname}}">[<a href="/devices/{{.Hostname}}">{{.Hostname}}</a>]
<pre>{{.Graph}}</pre>
</li>
{{end}}
</ol>
<p>*graphs depict host pings over the last 15 minutes (approx.)</p>
<div class="info">
<pre>
╭╮
╯╰
</pre>
<div>represents one ping</div>
</div>
</p>
</div>
</div>
</body>
</html>