258 lines
12 KiB
HTML
Raw Normal View History

2020-12-09 19:05:40 +08:00
{{define "theme-default/home"}}
2019-12-08 16:59:58 +08:00
{{template "common/header" .}}
2020-12-24 09:54:17 +08:00
{{if ts .CustomCode}}
{{.CustomCode|safe}}
2020-12-19 10:57:10 +08:00
{{end}}
2019-12-08 16:59:58 +08:00
{{template "common/menu" .}}
<div class="nb-container">
<div class="ui container">
2021-01-12 14:09:25 +08:00
<div id="app">
<div class="ui styled fluid accordion" v-for="group in groups">
<div class="active title"><i class="dropdown icon"></i>@#(group.Tag!==''?group.Tag:'默认')#@</div>
2021-01-12 18:00:51 +08:00
<div class="active content">
<div class="ui four stackable status cards">
<div v-for='server in group.data' :id="server.ID" class="ui card">
<div class="content" v-if='server.Host' style="margin-top: 10px;padding-bottom: 5px">
<div class="header"><i :class="server.Host.CountryCode + ' flag'"></i><i
v-if='server.Host.Platform == "darwin"' class="apple icon"></i><i
v-if='server.Host.Platform == "linux"' class="linux icon"></i><i
v-if='server.Host.Platform == "windows"' class="windows icon"></i><i
v-if='server.Host.Platform == "freebsd"' class="freebsd icon"></i>@#server.Name
+
(server.live?'':' [已离线]')#@
<i class="yellow info circle icon"></i>
<div class='ui content popup' style="margin-bottom: 0">
系统:@#server.Host.Platform#@-@#server.Host.PlatformVersion#@ [<span
v-if='server.Host.Virtualization'>@#server.Host.Virtualization#@:</span>@#server.Host.Arch#@]<br>
2021-01-19 21:47:40 +08:00
CPU@#server.Host.CPU#@<br>
2021-01-12 18:00:51 +08:00
硬盘:@#formatByteSize(server.State.DiskUsed)#@/@#formatByteSize(server.Host.DiskTotal)#@<br>
内存:@#formatByteSize(server.State.MemUsed)#@/@#formatByteSize(server.Host.MemTotal)#@<br>
交换:@#formatByteSize(server.State.SwapUsed)#@/@#formatByteSize(server.Host.SwapTotal)#@<br>
流量:<i
class='arrow alternate circle down outline icon'></i>@#formatByteSize(server.State.NetInTransfer)#@<i
class='arrow alternate circle up outline icon'></i>@#formatByteSize(server.State.NetOutTransfer)#@<br>
启动:@# formatTimestamp(server.Host.BootTime) #@<br>
2021-01-17 22:05:59 +08:00
活动:@# new Date(server.LastActive).toLocaleString() #@<br>
2021-01-12 18:00:51 +08:00
版本:@#server.Host.Version#@<br>
2019-12-09 16:02:49 +08:00
</div>
2021-01-16 11:27:37 +08:00
<div class="ui divider" style="margin-bottom: 5px"></div>
2019-12-09 16:02:49 +08:00
</div>
2021-01-12 18:00:51 +08:00
<div class="description">
<div class="ui grid">
<div class="three wide column">CPU</div>
<div class="thirteen wide column">
<div :class="formatPercent(server.live,server.State.CPU, 100).class">
<div class="bar"
:style="formatPercent(server.live,server.State.CPU, 100).style">
<small>@#formatPercent(server.live,server.State.CPU,100).percent#@%</small>
</div>
</div>
2021-01-12 14:09:25 +08:00
</div>
2021-01-12 18:00:51 +08:00
<div class="three wide column">内存</div>
<div class="thirteen wide column">
<div
:class="formatPercent(server.live,server.State.MemUsed, server.Host.MemTotal).class">
<div class="bar"
:style="formatPercent(server.live,server.State.MemUsed, server.Host.MemTotal).style">
<small>@#parseInt(server.State?server.State.MemUsed/server.Host.MemTotal*100:0)#@%</small>
</div>
</div>
2021-01-12 14:09:25 +08:00
</div>
2021-01-12 18:00:51 +08:00
<div class="three wide column">交换</div>
<div class="thirteen wide column">
<div
:class="formatPercent(server.live,server.State.SwapUsed, server.Host.SwapTotal).class">
<div class="bar"
:style="formatPercent(server.live,server.State.SwapUsed, server.Host.SwapTotal).style">
<small>@#parseInt(server.State?server.State.SwapUsed/server.Host.SwapTotal*100:0)#@%</small>
</div>
</div>
</div>
<div class="three wide column">网络</div>
<div class="thirteen wide column">
<i class="arrow alternate circle down outline icon"></i>
@#formatByteSize(server.State.NetInSpeed)#@/s
<i class="arrow alternate circle up outline icon"></i>
@#formatByteSize(server.State.NetOutSpeed)#@/s
</div>
<div class="three wide column">硬盘</div>
<div class="thirteen wide column">
<div
:class="formatPercent(server.live,server.State.DiskUsed, server.Host.DiskTotal).class">
<div class="bar"
:style="formatPercent(server.live,server.State.DiskUsed, server.Host.DiskTotal).style">
<small>@#parseInt(server.State?server.State.DiskUsed/server.Host.DiskTotal*100:0)#@%</small>
</div>
</div>
</div>
<div class="three wide column">在线</div>
<div class="thirteen wide column">
<i class="clock icon"></i>@#secondToDate(server.State.Uptime)#@
2021-01-12 14:09:25 +08:00
</div>
2019-12-09 23:45:23 +08:00
</div>
</div>
2021-01-12 18:00:51 +08:00
</div>
<div class="content" v-else>
<p>@#server.Name#@</p>
<p>节点已离线</p>
2019-12-09 18:14:31 +08:00
</div>
2019-12-08 23:18:29 +08:00
</div>
</div>
2021-01-12 18:00:51 +08:00
</div>
2019-12-08 23:18:29 +08:00
</div>
</div>
2019-12-08 16:59:58 +08:00
</div>
</div>
{{template "common/footer" .}}
2019-12-09 18:14:31 +08:00
<script>
2021-01-12 14:09:25 +08:00
const initData = {{.Servers}};
2019-12-10 15:33:05 +08:00
var statusCards = new Vue({
2021-01-12 14:09:25 +08:00
el: '#app',
2019-12-10 15:49:06 +08:00
delimiters: ['@#', '#@'],
2019-12-10 15:33:05 +08:00
data: {
2021-01-12 14:09:25 +08:00
data: initData,
2021-01-12 18:00:51 +08:00
groups: [],
2020-12-19 12:43:03 +08:00
cache: [],
2019-12-10 15:33:05 +08:00
},
2021-01-12 14:09:25 +08:00
created() {
this.group()
},
2019-12-10 15:33:05 +08:00
mounted() {
$('.yellow.info.icon').popup({
2021-01-09 09:34:27 +08:00
popup: '.ui.content.popup',
exclusive: true,
2019-12-10 15:33:05 +08:00
});
},
methods: {
2021-01-12 14:09:25 +08:00
group() {
this.groups = groupingData(this.data, "Tag")
2021-01-12 14:09:25 +08:00
console.log(this.groups)
},
2020-12-19 12:43:03 +08:00
formatPercent(live, used, total) {
const percent = live ? (parseInt(used / total * 100) || 0) : -1
if (!this.cache[percent]) {
this.cache[percent] = {
class: {
ui: true,
progress: true,
},
style: {
'transition-duration': '300ms',
'min-width': 'unset',
width: percent + '% !important',
},
percent,
}
if (percent < 0) {
this.cache[percent].style['background-color'] = 'slategray'
this.cache[percent].class.offline = true
} else if (percent < 51) {
this.cache[percent].style['background-color'] = 'rgb(0, 235, 139)'
2020-12-19 12:43:03 +08:00
this.cache[percent].class.fine = true
} else if (percent < 81) {
this.cache[percent].style['background-color'] = 'orange'
this.cache[percent].class.warning = true
} else {
this.cache[percent].style['background-color'] = 'crimson'
this.cache[percent].class.error = true
}
2020-10-24 21:29:05 +08:00
}
2020-12-19 12:43:03 +08:00
return this.cache[percent]
2020-10-24 21:29:05 +08:00
},
2019-12-10 17:57:57 +08:00
secondToDate(s) {
var d = Math.floor(s / 3600 / 24);
2020-12-21 16:34:21 +08:00
if (d > 0) {
return d + "天"
}
2019-12-11 18:03:49 +08:00
var h = Math.floor(s / 3600 % 24);
2020-12-21 16:34:21 +08:00
var m = Math.floor(s / 60 % 60);
var s = Math.floor(s % 60);
return h + ":" + ("0" + m).slice(-2) + ":" + ("0" + s).slice(-2);
2019-12-10 17:57:57 +08:00
},
formatTimestamp(t) {
return new Date(t * 1000).toLocaleString()
},
formatByteSize(bs) {
const x = readableBytes(bs)
return x != "NaN undefined" ? x : '0 KB'
}
2019-12-10 15:33:05 +08:00
}
2019-12-10 17:57:57 +08:00
})
2021-01-12 18:00:51 +08:00
function groupingData(data, filed) {
let map = {};
let dest = [];
data.forEach(item => {
if (!map[item[filed]]) {
dest.push({
[filed]: item[filed],
data: [item]
});
map[item[filed]] = item;
} else {
dest.forEach(dItem => {
if (dItem[filed] == item[filed]) {
dItem.data.push(item);
}
});
}
})
return dest;
}
2021-01-12 18:00:51 +08:00
2020-10-25 09:57:50 +08:00
const wsProtocol = window.location.protocol == "https:" ? "wss" : "ws"
2020-10-24 21:29:05 +08:00
const ws = new WebSocket(wsProtocol + '://' + window.location.host + '/ws');
2019-12-10 17:57:57 +08:00
ws.onopen = function (evt) {
$.suiAlert({
title: '实时通道建立',
description: '可以实时获取最新监控数据啦',
type: 'success',
time: '2',
position: 'top-center',
});
}
ws.onmessage = function (evt) {
const oldServers = statusCards.servers
statusCards.servers = JSON.parse(evt.data)
2021-01-09 09:34:27 +08:00
for (let i = 0; i < statusCards.servers.length; i++) {
2021-01-08 21:04:50 +08:00
const ns = statusCards.servers[i];
2020-12-19 12:43:03 +08:00
if (!ns.Host) ns.live = false
else {
const lastActive = new Date(ns.LastActive).getTime()
2021-01-04 10:51:57 +08:00
if (Date.now() - lastActive > 20 * 1000) {
2020-12-19 12:43:03 +08:00
ns.live = false
} else {
ns.live = true
}
}
2019-12-10 17:57:57 +08:00
}
2021-01-12 18:00:51 +08:00
statusCards.groups = groupingData(statusCards.servers, "Tag")
2019-12-10 17:57:57 +08:00
}
ws.onclose = function () {
$.suiAlert({
title: '实时通道断开',
description: '无法实时获取最新监控数据咯',
type: 'warning',
time: '2',
position: 'top-center',
});
}
$('.ui.accordion')
2021-01-12 18:00:51 +08:00
.accordion({"exclusive": false})
;
2019-12-09 18:14:31 +08:00
</script>
{{end}}