mirror of https://github.com/statping/statping
181 lines
5.8 KiB
HTML
181 lines
5.8 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">
|
|
|
|
{{if .Core.OfflineAssets}}
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://statup.io/base.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.bundle.min.js"></script>
|
|
{{ else }}
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/base.css">
|
|
<script src="/js/Chart.bundle.min.js"></script>
|
|
{{end}}
|
|
<title>{{.Core.Name}} Status</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="container col-md-7 col-sm-12 mt-2">
|
|
|
|
<h1 class="text-center mb-4 mt-sm-3">{{.Core.Name}}</h1>
|
|
|
|
{{ if .Core.Description }}
|
|
<h5 class="text-center mb-5 text-muted">{{ .Core.Description }}</h5>
|
|
{{ end }}
|
|
|
|
<div class="col-12 mb-5">
|
|
|
|
<div class="list-group online_list">
|
|
{{ range .Services }}
|
|
<a href="#" class="list-group-item list-group-item-action {{if not .Online}}bg-danger text-white{{ end }}">
|
|
{{ .Name }}
|
|
{{if .Online}}
|
|
<span class="badge online_badge float-right">ONLINE</span>
|
|
{{ else }}
|
|
<span class="badge bg-white text-black-50 float-right">OFFLINE</span>
|
|
{{end}}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col-12">
|
|
|
|
{{ range .Services }}
|
|
<div class="mb-4">
|
|
<div class="card">
|
|
<div class="card-body{{if .Online}}{{else}} offline_bg{{end}}">
|
|
|
|
<div class="progress">
|
|
<div class="progress-bar {{if .Online24Hours}} bg-success {{else}} bg-danger {{end}}" role="progressbar" style="width: {{.Online24Hours}}%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
|
</div>
|
|
|
|
<h4 class="mt-4"><a href="/service/{{.Id}}">{{ .Name }}</a>
|
|
{{if .Online}}
|
|
<span class="badge online_badge float-right">ONLINE</span>
|
|
{{ else }}
|
|
<span class="badge offline_badge float-right">OFFLINE</span>
|
|
{{end}}</h4>
|
|
|
|
<div class="row stats_area mt-5 mb-5">
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{.Online24}}%</span>
|
|
Online last 24 Hours
|
|
</div>
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{.AvgTime}}ms</span>
|
|
Average Response
|
|
</div>
|
|
|
|
<div class="col-4">
|
|
<span class="lg_number">{{.AvgUptime}}%</span>
|
|
Total Uptime
|
|
</div>
|
|
</div>
|
|
|
|
<canvas id="service_{{ .Id }}" width="400" height="120"></canvas>
|
|
|
|
{{ if .LimitedFailures }}
|
|
<div class="list-group mt-5">
|
|
{{ range .LimitedFailures }}
|
|
<a href="#" class="list-group-item list-group-item-action flex-column align-items-start">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">{{.ParseError}}</h5>
|
|
<small>Reported {{.Ago}}</small>
|
|
</div>
|
|
<p class="mb-1">{{.Issue}}</p>
|
|
</a>
|
|
{{ end }}
|
|
|
|
<span class="text-right">{{ .TotalFailures }} Total Failures</span>
|
|
|
|
</div>
|
|
{{ end }}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
{{template "footer"}}
|
|
|
|
<script>
|
|
{{ range .Services }}
|
|
{{if .GraphData}}
|
|
var ctx = document.getElementById("service_{{.Id}}").getContext('2d');
|
|
|
|
var chartdata = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
datasets: [{
|
|
label: 'Response Time (Milliseconds)',
|
|
data: {{js .GraphData}},
|
|
backgroundColor: [
|
|
'rgba(47, 206, 30, 0.92)'
|
|
],
|
|
borderColor: [
|
|
'rgb(47, 171, 34)'
|
|
],
|
|
borderWidth: 1
|
|
}]
|
|
},
|
|
options: {
|
|
legend: {
|
|
display: false
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
ticks: {
|
|
beginAtZero: true
|
|
},
|
|
gridLines: {
|
|
display:false
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
type: 'time',
|
|
distribution: 'series',
|
|
gridLines: {
|
|
display:false
|
|
}
|
|
}]
|
|
},
|
|
elements: {
|
|
point: {
|
|
radius: 0
|
|
}
|
|
}
|
|
}
|
|
});
|
|
{{ end }}
|
|
{{ end }}
|
|
</script>
|
|
|
|
|
|
{{ if .Core.Style }}
|
|
<style>
|
|
{{ safe .Core.Style }}
|
|
</style>
|
|
{{ end }}
|
|
|
|
|
|
{{if .Core.OfflineAssets}}
|
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
{{ else }}
|
|
<script src="/js/jquery-3.3.1.slim.min.js"></script>
|
|
<script src="/js/bootstrap.min.js"></script>
|
|
{{end}}
|
|
|
|
</body>
|
|
</html> |