mirror of https://github.com/statping/statping
66 lines
1.5 KiB
HTML
66 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/base.css">
|
|
|
|
<title>Statup | Dashboard</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="container">
|
|
|
|
{{template "nav"}}
|
|
|
|
<div class="row stats_area mb-4">
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{ .CountServices }}</span>
|
|
Total Services
|
|
</div>
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{ .Count24Failures }}</span>
|
|
Failures last 24 Hours
|
|
</div>
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{ .CountOnline }}</span>
|
|
Online Services
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<h3>Latest Failures</h3>
|
|
|
|
{{ range .Services }}
|
|
|
|
{{$name := .Name}}
|
|
|
|
{{ range .Failures }}
|
|
<blockquote class="blockquote text-left mt-3">
|
|
<p class="mb-0">{{$name}}</p>
|
|
<p class="mb-0">{{.ParseError}}</p>
|
|
<footer class="blockquote-footer">Reported <cite title="Source Title">{{.Ago}}</cite></footer>
|
|
</blockquote>
|
|
{{ end }}
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="/js/jquery-3.3.1.slim.min.js"></script>
|
|
|
|
</body>
|
|
</html> |