开源版本也显示域名排行、缓存流量趋势、攻击流量趋势

This commit is contained in:
GoEdgeLab
2021-09-19 16:10:52 +08:00
parent ba39c6e148
commit 2f1e5bad43
3 changed files with 165 additions and 80 deletions

View File

@@ -40,6 +40,10 @@ func (this *IndexAction) RunGet(params struct{}) {
} }
} }
this.Show()
}
func (this *IndexAction) RunPost(params struct{}) {
// 读取看板数据 // 读取看板数据
resp, err := this.RPC().AdminRPC().ComposeAdminDashboard(this.AdminContext(), &pb.ComposeAdminDashboardRequest{ resp, err := this.RPC().AdminRPC().ComposeAdminDashboard(this.AdminContext(), &pb.ComposeAdminDashboardRequest{
ApiVersion: teaconst.APINodeVersion, ApiVersion: teaconst.APINodeVersion,
@@ -50,7 +54,7 @@ func (this *IndexAction) RunGet(params struct{}) {
} }
this.Data["dashboard"] = maps.Map{ this.Data["dashboard"] = maps.Map{
"defaultClusterId": resp.DefaultNodeClusterId, "defaultClusterId": resp.DefaultNodeClusterId,
"countServers": resp.CountServers, "countServers": resp.CountServers,
"countNodeClusters": resp.CountNodeClusters, "countNodeClusters": resp.CountNodeClusters,
"countNodes": resp.CountNodes, "countNodes": resp.CountNodes,
@@ -85,8 +89,14 @@ func (this *IndexAction) RunGet(params struct{}) {
statMaps := []maps.Map{} statMaps := []maps.Map{}
for _, stat := range resp.HourlyTrafficStats { for _, stat := range resp.HourlyTrafficStats {
statMaps = append(statMaps, maps.Map{ statMaps = append(statMaps, maps.Map{
"bytes": stat.Bytes, "bytes": stat.Bytes,
"hour": stat.Hour[8:], "cachedBytes": stat.CachedBytes,
"countRequests": stat.CountRequests,
"countCachedRequests": stat.CountCachedRequests,
"countAttackRequests": stat.CountAttackRequests,
"attackBytes": stat.AttackBytes,
"day": stat.Hour[4:6] + "月" + stat.Hour[6:8] + "日",
"hour": stat.Hour[8:],
}) })
} }
this.Data["hourlyTrafficStats"] = statMaps this.Data["hourlyTrafficStats"] = statMaps
@@ -97,8 +107,13 @@ func (this *IndexAction) RunGet(params struct{}) {
statMaps := []maps.Map{} statMaps := []maps.Map{}
for _, stat := range resp.DailyTrafficStats { for _, stat := range resp.DailyTrafficStats {
statMaps = append(statMaps, maps.Map{ statMaps = append(statMaps, maps.Map{
"bytes": stat.Bytes, "bytes": stat.Bytes,
"day": stat.Day[4:6] + "月" + stat.Day[6:] + "日", "cachedBytes": stat.CachedBytes,
"countRequests": stat.CountRequests,
"countCachedRequests": stat.CountCachedRequests,
"countAttackRequests": stat.CountAttackRequests,
"attackBytes": stat.AttackBytes,
"day": stat.Day[4:6] + "月" + stat.Day[6:] + "日",
}) })
} }
this.Data["dailyTrafficStats"] = statMaps this.Data["dailyTrafficStats"] = statMaps
@@ -172,6 +187,20 @@ func (this *IndexAction) RunGet(params struct{}) {
} }
} }
// 域名排行
{
var statMaps = []maps.Map{}
for _, stat := range resp.TopDomainStats {
statMaps = append(statMaps, maps.Map{
"serverId": stat.ServerId,
"domain": stat.Domain,
"countRequests": stat.CountRequests,
"bytes": stat.Bytes,
})
}
this.Data["topDomainStats"] = statMaps
}
// 指标 // 指标
{ {
var chartMaps = []maps.Map{} var chartMaps = []maps.Map{}
@@ -210,5 +239,5 @@ func (this *IndexAction) RunGet(params struct{}) {
this.Data["metricCharts"] = chartMaps this.Data["metricCharts"] = chartMaps
} }
this.Show() this.Success()
} }

View File

@@ -1,24 +1,31 @@
{$layout} {$layout}
{$template "/echarts"} {$template "/echarts"}
<!-- 加载中 -->
<div style="margin-top: 0.8em">
<div class="ui message loading" v-if="isLoading">
<div class="ui active inline loader small"></div> &nbsp; 数据加载中...
</div>
</div>
<!-- 没有节点提醒 --> <!-- 没有节点提醒 -->
<div class="ui icon message warning" v-if="dashboard.defaultClusterId > 0 && dashboard.countNodes == 0"> <div class="ui icon message warning" v-if="!isLoading && dashboard.defaultClusterId > 0 && dashboard.countNodes == 0">
<i class="icon warning circle"></i> <i class="icon warning circle"></i>
<a :href="'/clusters/cluster/createNode?clusterId=' + dashboard.defaultClusterId">还没有在集群中添加节点,现在去添加?添加节点后才可部署网站服务。</a> <a :href="'/clusters/cluster/createNode?clusterId=' + dashboard.defaultClusterId">还没有在集群中添加节点,现在去添加?添加节点后才可部署网站服务。</a>
</div> </div>
<!-- 升级提醒 --> <!-- 升级提醒 -->
<div class="ui icon message error" v-if="nodeUpgradeInfo.count > 0"> <div class="ui icon message error" v-if="!isLoading && nodeUpgradeInfo.count > 0">
<i class="icon warning circle"></i> <i class="icon warning circle"></i>
<a href="/clusters">升级提醒:有 {{nodeUpgradeInfo.count}} 个边缘节点需要升级到 v{{nodeUpgradeInfo.version}} 版本</a><a href="" title="关闭" @click.prevent="closeMessage"><i class="ui icon remove small"></i></a> <a href="/clusters">升级提醒:有 {{nodeUpgradeInfo.count}} 个边缘节点需要升级到 v{{nodeUpgradeInfo.version}} 版本</a><a href="" title="关闭" @click.prevent="closeMessage"><i class="ui icon remove small"></i></a>
</div> </div>
<div class="ui icon message error" v-if="apiNodeUpgradeInfo.count > 0"> <div class="ui icon message error" v-if="!isLoading && apiNodeUpgradeInfo.count > 0">
<i class="icon warning circle"></i> <i class="icon warning circle"></i>
<a href="/api">升级提醒:有 {{apiNodeUpgradeInfo.count}} 个API节点需要升级到 v{{apiNodeUpgradeInfo.version}} 版本</a><a href="" title="关闭" @click.prevent="closeMessage"><i class="ui icon remove small"></i></a> <a href="/api">升级提醒:有 {{apiNodeUpgradeInfo.count}} 个API节点需要升级到 v{{apiNodeUpgradeInfo.version}} 版本</a><a href="" title="关闭" @click.prevent="closeMessage"><i class="ui icon remove small"></i></a>
</div> </div>
<!-- 统计图表 --> <!-- 统计图表 -->
<div class="ui three columns grid"> <div class="ui three columns grid" v-if="!isLoading">
<div class="ui column"> <div class="ui column">
<h4>集群<link-icon href="/clusters" v-if="dashboard.canGoNodes"></link-icon></h4> <h4>集群<link-icon href="/clusters" v-if="dashboard.canGoNodes"></link-icon></h4>
<div class="value"><span>{{dashboard.countNodeClusters}}</span></div> <div class="value"><span>{{dashboard.countNodeClusters}}</span></div>
@@ -50,9 +57,9 @@
</div> </div>
</div> </div>
<div class="ui divider"></div> <div class="ui divider" v-show="!isLoading"></div>
<div class="ui menu tabular"> <div class="ui menu tabular" v-show="!isLoading">
<a href="" class="item" :class="{active: trafficTab == 'hourly'}" @click.prevent="selectTrafficTab('hourly')">24小时流量趋势</a> <a href="" class="item" :class="{active: trafficTab == 'hourly'}" @click.prevent="selectTrafficTab('hourly')">24小时流量趋势</a>
<a href="" class="item" :class="{active: trafficTab == 'daily'}" @click.prevent="selectTrafficTab('daily')">15天流量趋势</a> <a href="" class="item" :class="{active: trafficTab == 'daily'}" @click.prevent="selectTrafficTab('daily')">15天流量趋势</a>
</div> </div>
@@ -63,6 +70,10 @@
<!-- 按日统计 --> <!-- 按日统计 -->
<div class="chart-box" id="daily-traffic-chart-box" v-show="trafficTab == 'daily'"></div> <div class="chart-box" id="daily-traffic-chart-box" v-show="trafficTab == 'daily'"></div>
<!-- 域名排行 -->
<h4 v-show="!isLoading">域名访问排行 <span>24小时</span></h4>
<div class="chart-box" id="top-domains-chart"></div>
<!-- 指标 --> <!-- 指标 -->
<div class="ui divider" v-if="metricCharts.length > 0"></div> <div class="ui divider" v-if="metricCharts.length > 0"></div>
<metric-board> <metric-board>

View File

@@ -1,8 +1,23 @@
Tea.context(function () { Tea.context(function () {
this.isLoading = true
this.trafficTab = "hourly" this.trafficTab = "hourly"
this.metricCharts = []
this.dashboard = {}
this.$delay(function () { this.$delay(function () {
this.reloadHourlyTrafficChart() this.$post("$")
.success(function (resp) {
for (let k in resp.data) {
this[k] = resp.data[k]
}
this.isLoading = false
this.$delay(function () {
this.reloadHourlyTrafficChart()
this.reloadTopDomainsChart()
})
})
}) })
this.selectTrafficTab = function (tab) { this.selectTrafficTab = function (tab) {
@@ -19,16 +34,48 @@ Tea.context(function () {
} }
this.reloadHourlyTrafficChart = function () { this.reloadHourlyTrafficChart = function () {
let axis = teaweb.bytesAxis(this.hourlyTrafficStats, function (v) { let stats = this.hourlyTrafficStats
this.reloadTrafficChart("hourly-traffic-chart-box", 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.dailyTrafficStats
this.reloadTrafficChart("daily-traffic-chart-box", 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, stats, tooltipFunc) {
let axis = teaweb.bytesAxis(stats, function (v) {
return v.bytes return v.bytes
}) })
let chartBox = document.getElementById("hourly-traffic-chart-box") let chartBox = document.getElementById(chartId)
let chart = teaweb.initChart(chartBox) let chart = teaweb.initChart(chartBox)
let that = this
let option = { let option = {
xAxis: { xAxis: {
data: this.hourlyTrafficStats.map(function (v) { data: stats.map(function (v) {
return v.hour; if (v.hour != null) {
return v.hour
}
return v.day
}) })
}, },
yAxis: { yAxis: {
@@ -41,21 +88,19 @@ Tea.context(function () {
tooltip: { tooltip: {
show: true, show: true,
trigger: "item", trigger: "item",
formatter: function (args) { formatter: tooltipFunc
let index = args.dataIndex
return that.hourlyTrafficStats[index].hour + "时:" + teaweb.formatBytes(that.hourlyTrafficStats[index].bytes)
}
}, },
grid: { grid: {
left: 40, left: 50,
top: 10, top: 40,
right: 20 right: 20,
bottom: 20
}, },
series: [ series: [
{ {
name: "流量", name: "流量",
type: "line", type: "line",
data: this.hourlyTrafficStats.map(function (v) { data: stats.map(function (v) {
return v.bytes / axis.divider; return v.bytes / axis.divider;
}), }),
itemStyle: { itemStyle: {
@@ -68,71 +113,71 @@ Tea.context(function () {
color: "#9DD3E8" color: "#9DD3E8"
}, },
smooth: true smooth: true
},
{
name: "缓存流量",
type: "line",
data: stats.map(function (v) {
return v.cachedBytes / axis.divider;
}),
itemStyle: {
color: "#61A0A8"
},
lineStyle: {
color: "#61A0A8"
},
areaStyle: {},
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: false animation: false
} }
chart.setOption(option) chart.setOption(option)
chart.resize() chart.resize()
} }
this.reloadDailyTrafficChart = function () {
let axis = teaweb.bytesAxis(this.dailyTrafficStats, function (v) {
return v.bytes
})
let chartBox = document.getElementById("daily-traffic-chart-box")
let chart = teaweb.initChart(chartBox)
let that = this // 域名排行
let option = { this.reloadTopDomainsChart = function () {
xAxis: { let axis = teaweb.countAxis(this.topDomainStats, function (v) {
data: this.dailyTrafficStats.map(function (v) { return v.countRequests
return v.day; })
}) teaweb.renderBarChart({
id: "top-domains-chart",
name: "域名",
values: this.topDomainStats,
x: function (v) {
return v.domain
}, },
yAxis: { tooltip: function (args, stats) {
axisLabel: { return stats[args.dataIndex].domain + "<br/>请求数:" + " " + teaweb.formatNumber(stats[args.dataIndex].countRequests) + "<br/>流量:" + teaweb.formatBytes(stats[args.dataIndex].bytes)
formatter: function (v) {
return v + axis.unit
}
}
}, },
tooltip: { value: function (v) {
show: true, return v.countRequests / axis.divider;
trigger: "item",
formatter: function (args) {
let index = args.dataIndex
return that.dailyTrafficStats[index].day + "" + teaweb.formatBytes(that.dailyTrafficStats[index].bytes)
}
}, },
grid: { axis: axis,
left: 40, click: function (args, stats) {
top: 10, let index = args.dataIndex
right: 20 window.location = "/servers/server?serverId=" + stats[index].serverId
}, }
series: [ })
{
name: "流量",
type: "line",
data: this.dailyTrafficStats.map(function (v) {
return v.bytes / axis.divider;
}),
itemStyle: {
color: "#9DD3E8"
},
lineStyle: {
color: "#9DD3E8"
},
areaStyle: {
color: "#9DD3E8"
},
smooth: true
}
],
animation: false
}
chart.setOption(option)
chart.resize()
} }
/** /**