2023-04-08 12:28:21 -04:00
|
|
|
|
{{define "theme-angel-kanade/service"}}
|
|
|
|
|
{{template "theme-angel-kanade/header" .}}
|
2023-04-08 11:57:28 -04:00
|
|
|
|
{{if ts .CustomCode}}
|
|
|
|
|
{{.CustomCode|safe}}
|
|
|
|
|
{{end}}
|
2023-04-08 12:28:21 -04:00
|
|
|
|
{{template "theme-angel-kanade/menu" .}}
|
2023-04-08 11:57:28 -04:00
|
|
|
|
<div class="nb-container">
|
|
|
|
|
<div class="ui container">
|
|
|
|
|
<div class="service-status">
|
|
|
|
|
<table class="ui celled table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="ui center aligned">{{tr "Name"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "30DaysOnline"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "Details"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "Status"}}</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{range $service := .Services}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="ui center aligned">{{$service.Monitor.Name}}</td>
|
|
|
|
|
<td class="ui center aligned">
|
|
|
|
|
{{$service.TotalUptime|float32f}}%
|
|
|
|
|
</td>
|
|
|
|
|
<td class="ui center aligned">{{range $i,$d := $service.Delay}}
|
|
|
|
|
<div class="ui icon button {{className (div (index $service.Up $i) (add (index $service.Up $i) (index $service.Down $i)))}}"
|
|
|
|
|
data-tooltip="{{dayBefore $i}},{{tr "Availability"}}:{{float32f (div (index $service.Up $i) (add (index $service.Up $i) (index $service.Down $i)))}}%,{{tr "AverageLatency"}}:{{float32f $d}}ms">
|
|
|
|
|
</div> {{end}}
|
|
|
|
|
</td>
|
|
|
|
|
<td class="ui center aligned delay-today">
|
|
|
|
|
<i
|
|
|
|
|
class="delay-today {{className (divU64 $service.CurrentUp (addU64 $service.CurrentUp $service.CurrentDown))}}"></i>
|
|
|
|
|
{{statusName (divU64 $service.CurrentUp (addU64 $service.CurrentUp $service.CurrentDown))}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr> {{end}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
{{if .CycleTransferStats}}
|
|
|
|
|
|
|
|
|
|
<h2 style="text-align: center;">{{tr "CycleTransferStats"}}</h2>
|
|
|
|
|
|
|
|
|
|
<table class="ui celled table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="ui center aligned">ID</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "Rules"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "Server"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "From"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "To"}}</th>
|
|
|
|
|
<th class="ui center aligned">MAX</th>
|
|
|
|
|
<th class="ui center aligned">MIN</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "NextCheck"}}</th>
|
|
|
|
|
<th class="ui center aligned">{{tr "CurrentUsage"}}</th>
|
|
|
|
|
<th class='ui center aligned' style='padding: 0px 31px 0px 31px;'>{{tr "Transleft"}}</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{range $id, $stats := .CycleTransferStats}}
|
|
|
|
|
{{range $innerId, $transfer := $stats.Transfer}}
|
|
|
|
|
{{$TransLeftPercent := TransLeftPercent (UintToFloat $transfer) (UintToFloat $stats.Max)}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="ui center aligned">{{$id}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$stats.Name}}</td>
|
|
|
|
|
<td class="ui center aligned">{{index $stats.ServerName $innerId}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$stats.From|tf}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$stats.To|tf}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$stats.Max|bf}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$stats.Min|bf}}</td>
|
|
|
|
|
<td class="ui center aligned">{{(index $stats.NextUpdate $innerId)|sft}}</td>
|
|
|
|
|
<td class="ui center aligned">{{$transfer|bf}}</td>
|
|
|
|
|
<td class="ui center aligned" style="padding: 14px 0px 0px 0px; position: relative;"><div class="thirteen wide column"><div class="ui progress {{TransClassName $TransLeftPercent}}" style=" background: rgba(0,0,0,.1); background-color: rgba(0,0,0,.1)!important; height: 25px;"><div class="bar" style="transition-duration: 300ms; min-width: unset; background-color: rgb(10, 148, 242); width: {{$TransLeftPercent}}% !important;"></div><small style="position: relative; top: -2em;">{{TransLeft $stats.Max $transfer}} / {{$TransLeftPercent}} %</small></div></div></td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{end}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{{end}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-04-08 12:28:21 -04:00
|
|
|
|
{{template "theme-angel-kanade/footer" .}}
|
2024-02-27 07:42:56 -05:00
|
|
|
|
<script>
|
|
|
|
|
new Vue({
|
|
|
|
|
el: '#app',
|
|
|
|
|
delimiters: ['@#', '#@'],
|
|
|
|
|
data: {
|
|
|
|
|
defaultTemplate: {{.Conf.Site.Theme}},
|
|
|
|
|
templates: {{.Themes}}
|
|
|
|
|
},
|
|
|
|
|
mixins: [mixinsVue]
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2023-04-08 11:57:28 -04:00
|
|
|
|
{{end}}
|