mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 04:10:27 +08:00
503 lines
13 KiB
JavaScript
503 lines
13 KiB
JavaScript
Tea.context(function () {
|
||
this.upNode = function (nodeId) {
|
||
teaweb.confirm("确定要手动上线此节点吗?", function () {
|
||
this.$post("/clusters/cluster/node/up")
|
||
.params({
|
||
nodeId: nodeId
|
||
})
|
||
.refresh()
|
||
})
|
||
}
|
||
|
||
this.formatCount = function (count) {
|
||
if (count < 1000) {
|
||
return count.toString()
|
||
}
|
||
if (count < 1000 * 1000) {
|
||
return (Math.round(count / 1000 * 100) / 100) + "K"
|
||
}
|
||
return (Math.round(count / 1000 / 1000 * 100) / 100) + "M"
|
||
}
|
||
|
||
this.loadBoard = function () {
|
||
this.board.trafficInBytes = teaweb.formatBytes(this.board.trafficInBytes)
|
||
this.board.trafficOutBytes = teaweb.formatBytes(this.board.trafficOutBytes)
|
||
this.board.countConnections = this.formatCount(this.board.countConnections)
|
||
this.board.countRequests = this.formatCount(this.board.countRequests)
|
||
this.board.countAttackRequests = this.formatCount(this.board.countAttackRequests)
|
||
this.board.cpuUsage = Math.round(this.board.cpuUsage * 100 * 100) / 100
|
||
this.board.memoryUsage = Math.round(this.board.memoryUsage * 100 * 100) / 100
|
||
this.board.memoryTotalSize = Math.round(this.board.memoryTotalSize / 1024 / 1024 / 1024)
|
||
this.board.load = Math.round(this.board.load * 100) / 100
|
||
this.board.cacheDiskSize = teaweb.formatBytes(this.board.cacheDiskSize)
|
||
this.board.cacheMemorySize = teaweb.formatBytes(this.board.cacheMemorySize)
|
||
}
|
||
this.loadBoard()
|
||
|
||
|
||
/**
|
||
* 流量统计
|
||
*/
|
||
this.trafficTab = "hourly"
|
||
|
||
this.$delay(function () {
|
||
this.reloadHourlyTrafficChart()
|
||
this.reloadHourlyRequestsChart()
|
||
this.reloadTopDomainsChart()
|
||
this.reloadCPUChart()
|
||
this.reloadCacheDirsChart()
|
||
})
|
||
this.$delay(function () {
|
||
this.refreshBoard()
|
||
}, 30000)
|
||
|
||
this.refreshBoard = function () {
|
||
this.$post("$")
|
||
.params({
|
||
clusterId: this.clusterId,
|
||
nodeId: this.node.id
|
||
})
|
||
.success(function (resp) {
|
||
this.board = resp.data.board
|
||
this.loadBoard()
|
||
})
|
||
.done(function () {
|
||
this.$delay(function () {
|
||
this.refreshBoard()
|
||
}, 60000)
|
||
})
|
||
}
|
||
|
||
this.selectTrafficTab = function (tab) {
|
||
this.trafficTab = tab
|
||
if (tab == "hourly") {
|
||
this.$delay(function () {
|
||
this.reloadHourlyTrafficChart()
|
||
})
|
||
} else if (tab == "daily") {
|
||
this.$delay(function () {
|
||
this.reloadDailyTrafficChart()
|
||
})
|
||
}
|
||
}
|
||
|
||
this.reloadHourlyTrafficChart = function () {
|
||
let stats = this.hourlyStats
|
||
this.reloadTrafficChart("hourly-traffic-chart", "流量统计", stats, function (args) {
|
||
let index = args.dataIndex
|
||
let cachedRatio = 0
|
||
let attackRatio = 0
|
||
if (stats[index].bytes > 0) {
|
||
cachedRatio = Math.round(stats[index].cachedBytes * 10000 / stats[index].bytes) / 100
|
||
attackRatio = Math.round(stats[index].attackBytes * 10000 / stats[index].bytes) / 100
|
||
}
|
||
|
||
return stats[index].day + " " + stats[index].hour + "时<br/>总流量:" + teaweb.formatBytes(stats[index].bytes) + "<br/>缓存流量:" + teaweb.formatBytes(stats[index].cachedBytes) + "<br/>缓存命中率:" + cachedRatio + "%<br/>拦截攻击流量:" + teaweb.formatBytes(stats[index].attackBytes) + "<br/>拦截比例:" + attackRatio + "%"
|
||
})
|
||
}
|
||
|
||
this.reloadDailyTrafficChart = function () {
|
||
let stats = this.dailyStats
|
||
this.reloadTrafficChart("daily-traffic-chart", "流量统计", stats, function (args) {
|
||
let index = args.dataIndex
|
||
let cachedRatio = 0
|
||
let attackRatio = 0
|
||
if (stats[index].bytes > 0) {
|
||
cachedRatio = Math.round(stats[index].cachedBytes * 10000 / stats[index].bytes) / 100
|
||
attackRatio = Math.round(stats[index].attackBytes * 10000 / stats[index].bytes) / 100
|
||
}
|
||
|
||
return stats[index].day + "<br/>总流量:" + teaweb.formatBytes(stats[index].bytes) + "<br/>缓存流量:" + teaweb.formatBytes(stats[index].cachedBytes) + "<br/>缓存命中率:" + cachedRatio + "%<br/>拦截攻击流量:" + teaweb.formatBytes(stats[index].attackBytes) + "<br/>拦截比例:" + attackRatio + "%"
|
||
})
|
||
}
|
||
|
||
this.reloadTrafficChart = function (chartId, name, stats, tooltipFunc) {
|
||
let chartBox = document.getElementById(chartId)
|
||
if (chartBox == null) {
|
||
return
|
||
}
|
||
|
||
let axis = teaweb.bytesAxis(stats, function (v) {
|
||
return Math.max(v.bytes, v.cachedBytes)
|
||
})
|
||
|
||
let chart = teaweb.initChart(chartBox)
|
||
let option = {
|
||
xAxis: {
|
||
data: stats.map(function (v) {
|
||
if (v.hour != null) {
|
||
return v.hour
|
||
}
|
||
return v.day
|
||
})
|
||
},
|
||
yAxis: {
|
||
axisLabel: {
|
||
formatter: function (value) {
|
||
return value + axis.unit
|
||
}
|
||
}
|
||
},
|
||
tooltip: {
|
||
show: true,
|
||
trigger: "item",
|
||
formatter: tooltipFunc
|
||
},
|
||
grid: {
|
||
left: 50,
|
||
top: 40,
|
||
right: 20,
|
||
bottom: 20
|
||
},
|
||
series: [
|
||
{
|
||
name: "流量",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.bytes / axis.divider
|
||
}),
|
||
itemStyle: {
|
||
color: "#9DD3E8"
|
||
},
|
||
areaStyle: {
|
||
color: "#9DD3E8"
|
||
},
|
||
smooth: true
|
||
},
|
||
{
|
||
name: "缓存流量",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.cachedBytes / axis.divider
|
||
}),
|
||
itemStyle: {
|
||
color: "#61A0A8"
|
||
},
|
||
areaStyle: {
|
||
color: "#61A0A8"
|
||
},
|
||
smooth: true
|
||
},
|
||
{
|
||
name: "攻击流量",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.attackBytes / axis.divider;
|
||
}),
|
||
itemStyle: {
|
||
color: "#F39494"
|
||
},
|
||
areaStyle: {
|
||
color: "#F39494"
|
||
},
|
||
smooth: true
|
||
}
|
||
],
|
||
legend: {
|
||
data: ["流量", "缓存流量", "攻击流量"]
|
||
},
|
||
animation: true
|
||
}
|
||
chart.setOption(option)
|
||
chart.resize()
|
||
}
|
||
|
||
/**
|
||
* 请求数统计
|
||
*/
|
||
this.requestsTab = "hourly"
|
||
|
||
this.selectRequestsTab = function (tab) {
|
||
this.requestsTab = tab
|
||
if (tab == "hourly") {
|
||
this.$delay(function () {
|
||
this.reloadHourlyRequestsChart()
|
||
})
|
||
} else if (tab == "daily") {
|
||
this.$delay(function () {
|
||
this.reloadDailyRequestsChart()
|
||
})
|
||
}
|
||
}
|
||
|
||
this.reloadHourlyRequestsChart = function () {
|
||
let stats = this.hourlyStats
|
||
this.reloadRequestsChart("hourly-requests-chart", "请求数统计", stats, function (args) {
|
||
let index = args.dataIndex
|
||
let cachedRatio = 0
|
||
let attackRatio = 0
|
||
if (stats[index].countRequests > 0) {
|
||
cachedRatio = Math.round(stats[index].countCachedRequests * 10000 / stats[index].countRequests) / 100
|
||
attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100
|
||
}
|
||
|
||
return stats[index].day + " " + stats[index].hour + "时<br/>总请求数:" + stats[index].countRequests + "<br/>缓存请求数:" + stats[index].countCachedRequests + "<br/>缓存命中率:" + cachedRatio + "%<br/>拦截攻击数:" + stats[index].countAttackRequests + "<br/>拦截比例:" + attackRatio + "%"
|
||
})
|
||
}
|
||
|
||
this.reloadDailyRequestsChart = function () {
|
||
let stats = this.dailyStats
|
||
this.reloadRequestsChart("daily-requests-chart", "请求数统计", stats, function (args) {
|
||
let index = args.dataIndex
|
||
let cachedRatio = 0
|
||
let attackRatio = 0
|
||
if (stats[index].countRequests > 0) {
|
||
cachedRatio = Math.round(stats[index].countCachedRequests * 10000 / stats[index].countRequests) / 100
|
||
attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100
|
||
}
|
||
|
||
return stats[index].day + "<br/>总请求数:" + stats[index].countRequests + "<br/>缓存请求数:" + stats[index].countCachedRequests + "<br/>缓存命中率:" + cachedRatio + "%<br/>拦截攻击数:" + stats[index].countAttackRequests + "<br/>拦截比例:" + attackRatio + "%"
|
||
})
|
||
}
|
||
|
||
this.reloadRequestsChart = function (chartId, name, stats, tooltipFunc) {
|
||
let chartBox = document.getElementById(chartId)
|
||
if (chartBox == null) {
|
||
return
|
||
}
|
||
|
||
let axis = teaweb.countAxis(stats, function (v) {
|
||
return Math.max(v.countRequests, v.countCachedRequests)
|
||
})
|
||
|
||
let chart = teaweb.initChart(chartBox)
|
||
let option = {
|
||
xAxis: {
|
||
data: stats.map(function (v) {
|
||
if (v.hour != null) {
|
||
return v.hour
|
||
}
|
||
if (v.day != null) {
|
||
return v.day
|
||
}
|
||
return ""
|
||
})
|
||
},
|
||
yAxis: {
|
||
axisLabel: {
|
||
formatter: function (value) {
|
||
return value + axis.unit
|
||
}
|
||
}
|
||
},
|
||
tooltip: {
|
||
show: true,
|
||
trigger: "item",
|
||
formatter: tooltipFunc
|
||
},
|
||
grid: {
|
||
left: 50,
|
||
top: 40,
|
||
right: 20,
|
||
bottom: 20
|
||
},
|
||
series: [
|
||
{
|
||
name: "请求数",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.countRequests / axis.divider
|
||
}),
|
||
itemStyle: {
|
||
color: "#9DD3E8"
|
||
},
|
||
areaStyle: {
|
||
color: "#9DD3E8"
|
||
},
|
||
smooth: true
|
||
},
|
||
{
|
||
name: "缓存请求数",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.countCachedRequests / axis.divider
|
||
}),
|
||
itemStyle: {
|
||
color: "#61A0A8"
|
||
},
|
||
areaStyle: {
|
||
color: "#61A0A8"
|
||
},
|
||
smooth: true
|
||
},
|
||
{
|
||
name: "攻击请求数",
|
||
type: "line",
|
||
data: stats.map(function (v) {
|
||
return v.countAttackRequests / axis.divider;
|
||
}),
|
||
itemStyle: {
|
||
color: "#F39494"
|
||
},
|
||
areaStyle: {
|
||
color: "#F39494"
|
||
},
|
||
smooth: true
|
||
}
|
||
],
|
||
legend: {
|
||
data: ["请求数", "缓存请求数", "攻击请求数"]
|
||
},
|
||
animation: true
|
||
}
|
||
chart.setOption(option)
|
||
chart.resize()
|
||
}
|
||
|
||
// 域名排行
|
||
this.reloadTopDomainsChart = function () {
|
||
let axis = teaweb.countAxis(this.topDomainStats, function (v) {
|
||
return v.countRequests
|
||
})
|
||
teaweb.renderBarChart({
|
||
id: "top-domains-chart",
|
||
name: "域名",
|
||
values: this.topDomainStats,
|
||
x: function (v) {
|
||
return v.domain
|
||
},
|
||
tooltip: function (args, stats) {
|
||
return stats[args.dataIndex].domain + "<br/>请求数:" + " " + teaweb.formatNumber(stats[args.dataIndex].countRequests) + "<br/>流量:" + teaweb.formatBytes(stats[args.dataIndex].bytes)
|
||
},
|
||
value: function (v) {
|
||
return v.countRequests / axis.divider;
|
||
},
|
||
axis: axis,
|
||
click: function (args, stats) {
|
||
window.location = "/servers/server?serverId=" + stats[args.dataIndex].serverId
|
||
}
|
||
})
|
||
}
|
||
|
||
/**
|
||
* 系统信息
|
||
*/
|
||
this.nodeStatusTab = "cpu"
|
||
|
||
this.selectNodeStatusTab = function (tab) {
|
||
this.nodeStatusTab = tab
|
||
this.$delay(function () {
|
||
switch (tab) {
|
||
case "cpu":
|
||
this.reloadCPUChart()
|
||
break
|
||
case "memory":
|
||
this.reloadMemoryChart()
|
||
break
|
||
case "load":
|
||
this.reloadLoadChart()
|
||
break
|
||
}
|
||
})
|
||
}
|
||
|
||
this.reloadCPUChart = function () {
|
||
let axis = {unit: "%", divider: 1}
|
||
teaweb.renderLineChart({
|
||
id: "cpu-chart",
|
||
name: "CPU",
|
||
values: this.cpuValues,
|
||
x: function (v) {
|
||
return v.time
|
||
},
|
||
tooltip: function (args, stats) {
|
||
return stats[args.dataIndex].time + ":" + (Math.ceil(stats[args.dataIndex].value * 100 * 100) / 100) + "%"
|
||
},
|
||
value: function (v) {
|
||
return v.value * 100;
|
||
},
|
||
axis: axis,
|
||
max: 100
|
||
})
|
||
}
|
||
|
||
this.reloadMemoryChart = function () {
|
||
let axis = {unit: "%", divider: 1}
|
||
teaweb.renderLineChart({
|
||
id: "memory-chart",
|
||
name: "内存",
|
||
values: this.memoryValues,
|
||
x: function (v) {
|
||
return v.time
|
||
},
|
||
tooltip: function (args, stats) {
|
||
return stats[args.dataIndex].time + ":" + (Math.ceil(stats[args.dataIndex].value * 100 * 100) / 100) + "%"
|
||
},
|
||
value: function (v) {
|
||
return v.value * 100;
|
||
},
|
||
axis: axis,
|
||
max: 100
|
||
})
|
||
}
|
||
|
||
this.reloadLoadChart = function () {
|
||
let axis = {unit: "", divider: 1}
|
||
let max = this.loadValues.$map(function (k, v) {
|
||
return v.value
|
||
}).$max()
|
||
if (max < 10) {
|
||
max = 10
|
||
} else if (max < 20) {
|
||
max = 20
|
||
} else if (max < 100) {
|
||
max = 100
|
||
} else {
|
||
max = null
|
||
}
|
||
teaweb.renderLineChart({
|
||
id: "load-chart",
|
||
name: "负载",
|
||
values: this.loadValues,
|
||
x: function (v) {
|
||
return v.time
|
||
},
|
||
tooltip: function (args, stats) {
|
||
return stats[args.dataIndex].time + ":" + (Math.ceil(stats[args.dataIndex].value * 100) / 100)
|
||
},
|
||
value: function (v) {
|
||
return v.value;
|
||
},
|
||
axis: axis,
|
||
max: max
|
||
})
|
||
}
|
||
|
||
this.cacheDirUsed = ""
|
||
this.cacheDirTotal = ""
|
||
this.cacheDirAvail = ""
|
||
this.cacheDirAvailWarning = false
|
||
if (this.cacheDirValues.length > 0) {
|
||
let lastStat = this.cacheDirValues.$last()
|
||
if (lastStat.value != null && lastStat.value.dirs != null && lastStat.value.dirs.length > 0) {
|
||
this.cacheDirUsed = teaweb.formatBytes(this.cacheDirValues.$last().value.dirs[0].used)
|
||
this.cacheDirTotal = teaweb.formatBytes(this.cacheDirValues.$last().value.dirs[0].total)
|
||
this.cacheDirAvail = teaweb.formatBytes(this.cacheDirValues.$last().value.dirs[0].avail)
|
||
this.cacheDirAvailWarning = (this.cacheDirValues.$last().value.dirs[0].avail < 1024 * 1024 * 1024 * 10)
|
||
}
|
||
}
|
||
this.reloadCacheDirsChart = function () {
|
||
let axis = {unit: "%", divider: 1}
|
||
teaweb.renderLineChart({
|
||
id: "cache-dirs-chart",
|
||
name: "缓存目录用量",
|
||
values: this.cacheDirValues,
|
||
x: function (v) {
|
||
return v.time
|
||
},
|
||
tooltip: function (args, stats) {
|
||
var v = stats[args.dataIndex].value.dirs[0]
|
||
return stats[args.dataIndex].time + "<br/>使用:" + teaweb.formatBytes(v.used) + "<br/>总量:" + teaweb.formatBytes(v.total) + "<br/>比例:" + (Math.ceil(v.used * 100 / v.total * 100) / 100) + "%"
|
||
},
|
||
value: function (v) {
|
||
if (v.value == null || v.value.dirs == null || v.value.dirs.length == 0) {
|
||
return 0
|
||
}
|
||
v = v.value.dirs[0]
|
||
return (v.used * 100 / v.total);
|
||
},
|
||
axis: axis,
|
||
max: 100
|
||
})
|
||
}
|
||
}) |