mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +08:00
64 lines
1.6 KiB
Go
64 lines
1.6 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/metricutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type IndexAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *IndexAction) Init() {
|
|
this.Nav("", "", "chart")
|
|
}
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
ItemId int64
|
|
}) {
|
|
_, err := metricutils.InitItem(this.Parent(), params.ItemId)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
countResp, err := this.RPC().MetricChartRPC().CountEnabledMetricCharts(this.AdminContext(), &pb.CountEnabledMetricChartsRequest{})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
var count = countResp.Count
|
|
page := this.NewPage(count)
|
|
this.Data["page"] = page.AsHTML()
|
|
|
|
chartsResp, err := this.RPC().MetricChartRPC().ListEnabledMetricCharts(this.AdminContext(), &pb.ListEnabledMetricChartsRequest{
|
|
MetricItemId: params.ItemId,
|
|
Offset: page.Offset,
|
|
Size: page.Size,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
var charts = chartsResp.MetricCharts
|
|
var chartMaps = []maps.Map{}
|
|
for _, chart := range charts {
|
|
chartMaps = append(chartMaps, maps.Map{
|
|
"id": chart.Id,
|
|
"name": chart.Name,
|
|
"type": chart.Type,
|
|
"typeName": serverconfigs.FindMetricChartTypeName(chart.Type),
|
|
"isOn": chart.IsOn,
|
|
"widthDiv": chart.WidthDiv,
|
|
})
|
|
}
|
|
this.Data["charts"] = chartMaps
|
|
|
|
this.Show()
|
|
}
|