mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-08 16:00:26 +08:00
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package charts
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/metrics/charts/chartutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/metrics/metricutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type ChartAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *ChartAction) Init() {
|
|
this.Nav("", "", "chart,chartIndex")
|
|
}
|
|
|
|
func (this *ChartAction) RunGet(params struct {
|
|
ChartId int64
|
|
}) {
|
|
chart, err := chartutils.InitChart(this.Parent(), params.ChartId)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
_, err = metricutils.InitItem(this.Parent(), chart.MetricItem.Id)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
var itemMap = this.Data["item"].(maps.Map)
|
|
itemMap["valueTypeName"] = serverconfigs.FindMetricValueName(itemMap.GetString("category"), itemMap.GetString("value"))
|
|
|
|
this.Show()
|
|
}
|