2021-06-27 21:59:06 +08:00
|
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2021-07-05 11:38:07 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
2021-06-27 21:59:06 +08:00
|
|
|
"github.com/iwind/TeaGo/maps"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type IndexAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *IndexAction) Init() {
|
|
|
|
|
this.Nav("", "setting", "setting")
|
|
|
|
|
this.SecondMenu("metric")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
|
|
|
ClusterId int64
|
|
|
|
|
Category string
|
|
|
|
|
}) {
|
|
|
|
|
if len(params.Category) == 0 {
|
|
|
|
|
params.Category = "http"
|
|
|
|
|
}
|
|
|
|
|
this.Data["category"] = params.Category
|
|
|
|
|
|
2021-06-30 19:59:59 +08:00
|
|
|
itemsResp, err := this.RPC().NodeClusterMetricItemRPC().FindAllNodeClusterMetricItems(this.AdminContext(), &pb.FindAllNodeClusterMetricItemsRequest{
|
|
|
|
|
NodeClusterId: params.ClusterId,
|
|
|
|
|
Category: params.Category,
|
|
|
|
|
})
|
2021-06-27 21:59:06 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var itemMaps = []maps.Map{}
|
|
|
|
|
for _, item := range itemsResp.MetricItems {
|
|
|
|
|
itemMaps = append(itemMaps, maps.Map{
|
2021-07-05 11:38:07 +08:00
|
|
|
"id": item.Id,
|
|
|
|
|
"name": item.Name,
|
|
|
|
|
"isOn": item.IsOn,
|
|
|
|
|
"period": item.Period,
|
|
|
|
|
"periodUnit": item.PeriodUnit,
|
|
|
|
|
"periodUnitName": serverconfigs.FindMetricPeriodUnitName(item.PeriodUnit),
|
|
|
|
|
"keys": item.Keys,
|
|
|
|
|
"value": item.Value,
|
|
|
|
|
"valueName": serverconfigs.FindMetricValueName(item.Category, item.Value),
|
|
|
|
|
"category": item.Category,
|
2021-07-19 15:23:20 +08:00
|
|
|
"isPublic": item.IsPublic,
|
2021-06-27 21:59:06 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.Data["items"] = itemMaps
|
|
|
|
|
|
|
|
|
|
this.Show()
|
|
|
|
|
}
|