mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-27 05:00:25 +08:00
38 lines
807 B
Go
38 lines
807 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package logs
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"strings"
|
|
)
|
|
|
|
// PartitionDataAction 读取分区表
|
|
type PartitionDataAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *PartitionDataAction) RunPost(params struct {
|
|
Day string
|
|
}) {
|
|
var day = params.Day
|
|
day = strings.ReplaceAll(day, "-", "")
|
|
|
|
resp, err := this.RPC().HTTPAccessLogRPC().FindHTTPAccessLogPartitions(this.AdminContext(), &pb.FindHTTPAccessLogPartitionsRequest{
|
|
Day: day,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
if len(resp.Partitions) > 0 {
|
|
this.Data["partitions"] = resp.Partitions
|
|
} else {
|
|
this.Data["partitions"] = []int32{}
|
|
}
|
|
|
|
this.Success()
|
|
}
|