2021-06-24 18:03:33 +08:00
|
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
2021-06-27 21:59:06 +08:00
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2021-07-03 15:44:49 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/metrics/metricutils"
|
2023-06-30 18:08:30 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
|
2021-06-27 21:59:06 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2021-06-30 19:59:59 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
2021-06-27 21:59:06 +08:00
|
|
|
"github.com/iwind/TeaGo/actions"
|
|
|
|
|
"github.com/iwind/TeaGo/maps"
|
|
|
|
|
)
|
2021-06-24 18:03:33 +08:00
|
|
|
|
|
|
|
|
type UpdateAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *UpdateAction) Init() {
|
2021-06-27 21:59:06 +08:00
|
|
|
this.Nav("", "", "update")
|
2021-06-24 18:03:33 +08:00
|
|
|
}
|
|
|
|
|
|
2021-06-27 21:59:06 +08:00
|
|
|
func (this *UpdateAction) RunGet(params struct {
|
|
|
|
|
ItemId int64
|
|
|
|
|
}) {
|
2021-07-03 15:44:49 +08:00
|
|
|
item, err := metricutils.InitItem(this.Parent(), params.ItemId)
|
2021-06-27 21:59:06 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 19:59:59 +08:00
|
|
|
this.Data["valueDefinitions"] = serverconfigs.FindAllMetricValueDefinitions(item.Category)
|
|
|
|
|
|
2021-06-24 18:03:33 +08:00
|
|
|
this.Show()
|
|
|
|
|
}
|
2021-06-27 21:59:06 +08:00
|
|
|
|
|
|
|
|
func (this *UpdateAction) RunPost(params struct {
|
2022-03-28 09:37:48 +08:00
|
|
|
ItemId int64
|
|
|
|
|
Name string
|
|
|
|
|
KeysJSON []byte
|
|
|
|
|
PeriodJSON []byte
|
|
|
|
|
ExpiresPeriod int32
|
|
|
|
|
Value string
|
|
|
|
|
IsOn bool
|
|
|
|
|
IsPublic bool
|
2021-06-27 21:59:06 +08:00
|
|
|
|
|
|
|
|
Must *actions.Must
|
|
|
|
|
CSRF *actionutils.CSRF
|
|
|
|
|
}) {
|
|
|
|
|
params.Must.
|
|
|
|
|
Field("name", params.Name).
|
|
|
|
|
Require("请输入指标名称")
|
|
|
|
|
|
|
|
|
|
// 统计对象
|
|
|
|
|
if len(params.KeysJSON) == 0 {
|
|
|
|
|
this.FailField("keys", "请选择指标统计的对象")
|
|
|
|
|
}
|
|
|
|
|
var keys = []string{}
|
|
|
|
|
err := json.Unmarshal(params.KeysJSON, &keys)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.FailField("keys", "解析指标对象失败")
|
|
|
|
|
}
|
|
|
|
|
if len(keys) == 0 {
|
|
|
|
|
this.FailField("keys", "请选择指标统计的对象")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var periodMap = maps.Map{}
|
|
|
|
|
err = json.Unmarshal(params.PeriodJSON, &periodMap)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.FailField("period", "解析统计周期失败")
|
|
|
|
|
}
|
|
|
|
|
var period = periodMap.GetInt32("period")
|
|
|
|
|
var periodUnit = periodMap.GetString("unit")
|
|
|
|
|
|
2022-03-28 09:37:48 +08:00
|
|
|
if params.ExpiresPeriod < 0 {
|
|
|
|
|
params.ExpiresPeriod = 0
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-27 21:59:06 +08:00
|
|
|
_, err = this.RPC().MetricItemRPC().UpdateMetricItem(this.AdminContext(), &pb.UpdateMetricItemRequest{
|
2022-03-28 09:37:48 +08:00
|
|
|
MetricItemId: params.ItemId,
|
|
|
|
|
Name: params.Name,
|
|
|
|
|
Keys: keys,
|
|
|
|
|
Period: period,
|
|
|
|
|
PeriodUnit: periodUnit,
|
|
|
|
|
Value: params.Value,
|
|
|
|
|
IsOn: params.IsOn,
|
|
|
|
|
IsPublic: params.IsPublic,
|
|
|
|
|
ExpiresPeriod: params.ExpiresPeriod,
|
2021-06-27 21:59:06 +08:00
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2023-06-30 18:08:30 +08:00
|
|
|
defer this.CreateLogInfo(codes.MetricItem_LogUpdateMetricItem, params.ItemId)
|
2021-06-27 21:59:06 +08:00
|
|
|
this.Success()
|
|
|
|
|
}
|