Files
EdgeNode/internal/stats/traffic_stat_manager.go

214 lines
5.9 KiB
Go
Raw Normal View History

2021-01-25 16:40:31 +08:00
package stats
import (
2021-01-25 16:40:31 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
2021-01-25 16:40:31 +08:00
"github.com/TeaOSLab/EdgeNode/internal/events"
"github.com/TeaOSLab/EdgeNode/internal/monitor"
"github.com/TeaOSLab/EdgeNode/internal/remotelogs"
"github.com/TeaOSLab/EdgeNode/internal/rpc"
"github.com/TeaOSLab/EdgeNode/internal/utils"
"github.com/iwind/TeaGo/Tea"
"github.com/iwind/TeaGo/maps"
2021-07-05 11:36:50 +08:00
"github.com/iwind/TeaGo/types"
"strconv"
2021-07-05 11:36:50 +08:00
"strings"
"sync"
"time"
)
var SharedTrafficStatManager = NewTrafficStatManager()
2021-06-08 11:24:41 +08:00
type TrafficItem struct {
2021-11-10 14:39:02 +08:00
Bytes int64
CachedBytes int64
CountRequests int64
CountCachedRequests int64
CountAttackRequests int64
AttackBytes int64
2021-11-10 21:51:56 +08:00
PlanId int64
2021-11-10 14:39:02 +08:00
CheckingTrafficLimit bool
2021-06-08 11:24:41 +08:00
}
2021-04-29 16:48:47 +08:00
// TrafficStatManager 区域流量统计
type TrafficStatManager struct {
2021-07-05 11:36:50 +08:00
itemMap map[string]*TrafficItem // [timestamp serverId] => *TrafficItem
domainsMap map[string]*TrafficItem // timestamp @ serverId @ domain => *TrafficItem
2021-01-25 16:40:31 +08:00
locker sync.Mutex
configFunc func() *nodeconfigs.NodeConfig
totalRequests int64
}
2021-04-29 16:48:47 +08:00
// NewTrafficStatManager 获取新对象
func NewTrafficStatManager() *TrafficStatManager {
manager := &TrafficStatManager{
2021-07-05 11:36:50 +08:00
itemMap: map[string]*TrafficItem{},
domainsMap: map[string]*TrafficItem{},
}
return manager
}
2021-04-29 16:48:47 +08:00
// Start 启动自动任务
2021-01-25 16:40:31 +08:00
func (this *TrafficStatManager) Start(configFunc func() *nodeconfigs.NodeConfig) {
this.configFunc = configFunc
// 上传请求总数
go func() {
ticker := time.NewTicker(1 * time.Minute)
go func() {
for range ticker.C {
if this.totalRequests > 0 {
monitor.SharedValueQueue.Add(nodeconfigs.NodeValueItemRequests, maps.Map{"total": this.totalRequests})
this.totalRequests = 0
}
}
}()
}()
// 上传统计数据
duration := 5 * time.Minute
if Tea.IsTesting() {
// 测试环境缩短上传时间,方便我们调试
duration = 30 * time.Second
}
ticker := time.NewTicker(duration)
2021-01-25 16:40:31 +08:00
events.On(events.EventQuit, func() {
remotelogs.Println("TRAFFIC_STAT_MANAGER", "quit")
ticker.Stop()
})
2021-01-26 18:42:46 +08:00
remotelogs.Println("TRAFFIC_STA_MANAGER", "start ...")
for range ticker.C {
err := this.Upload()
if err != nil {
2021-11-10 21:51:56 +08:00
if !rpc.IsConnError(err) {
remotelogs.Error("TRAFFIC_STAT_MANAGER", "upload stats failed: "+err.Error())
} else {
remotelogs.Warn("TRAFFIC_STAT_MANAGER", "upload stats failed: "+err.Error())
}
}
}
}
2021-04-29 16:48:47 +08:00
// Add 添加流量
2021-11-10 21:51:56 +08:00
func (this *TrafficStatManager) Add(serverId int64, domain string, bytes int64, cachedBytes int64, countRequests int64, countCachedRequests int64, countAttacks int64, attackBytes int64, checkingTrafficLimit bool, planId int64) {
if bytes == 0 && countRequests == 0 {
return
}
this.totalRequests++
timestamp := utils.UnixTime() / 300 * 300
key := strconv.FormatInt(timestamp, 10) + strconv.FormatInt(serverId, 10)
this.locker.Lock()
2021-07-05 11:36:50 +08:00
// 总的流量
2021-06-08 11:24:41 +08:00
item, ok := this.itemMap[key]
if !ok {
item = &TrafficItem{}
this.itemMap[key] = item
}
item.Bytes += bytes
item.CachedBytes += cachedBytes
item.CountRequests += countRequests
item.CountCachedRequests += countCachedRequests
2021-07-13 11:04:38 +08:00
item.CountAttackRequests += countAttacks
item.AttackBytes += attackBytes
2021-11-10 14:39:02 +08:00
item.CheckingTrafficLimit = checkingTrafficLimit
2021-11-10 21:51:56 +08:00
item.PlanId = planId
2021-07-05 11:36:50 +08:00
// 单个域名流量
var domainKey = strconv.FormatInt(timestamp, 10) + "@" + strconv.FormatInt(serverId, 10) + "@" + domain
domainItem, ok := this.domainsMap[domainKey]
if !ok {
domainItem = &TrafficItem{}
this.domainsMap[domainKey] = domainItem
}
domainItem.Bytes += bytes
domainItem.CachedBytes += cachedBytes
domainItem.CountRequests += countRequests
domainItem.CountCachedRequests += countCachedRequests
2021-07-13 11:04:38 +08:00
domainItem.CountAttackRequests += countAttacks
domainItem.AttackBytes += attackBytes
2021-07-05 11:36:50 +08:00
this.locker.Unlock()
}
2021-04-29 16:48:47 +08:00
// Upload 上传流量
func (this *TrafficStatManager) Upload() error {
2021-01-25 16:40:31 +08:00
config := this.configFunc()
if config == nil {
return nil
}
client, err := rpc.SharedRPC()
if err != nil {
return err
}
this.locker.Lock()
2021-07-05 11:36:50 +08:00
itemMap := this.itemMap
domainMap := this.domainsMap
2021-06-08 11:24:41 +08:00
this.itemMap = map[string]*TrafficItem{}
2021-07-05 11:36:50 +08:00
this.domainsMap = map[string]*TrafficItem{}
this.locker.Unlock()
2021-07-05 11:36:50 +08:00
// 服务统计
var pbServerStats = []*pb.ServerDailyStat{}
for key, item := range itemMap {
timestamp, err := strconv.ParseInt(key[:10], 10, 64)
if err != nil {
return err
}
serverId, err := strconv.ParseInt(key[10:], 10, 64)
if err != nil {
return err
}
2021-07-05 11:36:50 +08:00
pbServerStats = append(pbServerStats, &pb.ServerDailyStat{
2021-11-10 14:39:02 +08:00
ServerId: serverId,
RegionId: config.RegionId,
Bytes: item.Bytes,
CachedBytes: item.CachedBytes,
CountRequests: item.CountRequests,
CountCachedRequests: item.CountCachedRequests,
CountAttackRequests: item.CountAttackRequests,
AttackBytes: item.AttackBytes,
CheckTrafficLimiting: item.CheckingTrafficLimit,
2021-11-10 21:51:56 +08:00
PlanId: item.PlanId,
2021-11-10 14:39:02 +08:00
CreatedAt: timestamp,
})
}
2021-07-05 11:36:50 +08:00
if len(pbServerStats) == 0 {
return nil
}
2021-07-05 11:36:50 +08:00
// 域名统计
var pbDomainStats = []*pb.UploadServerDailyStatsRequest_DomainStat{}
for key, item := range domainMap {
var pieces = strings.SplitN(key, "@", 3)
if len(pieces) != 3 {
continue
}
pbDomainStats = append(pbDomainStats, &pb.UploadServerDailyStatsRequest_DomainStat{
ServerId: types.Int64(pieces[1]),
Domain: pieces[2],
Bytes: item.Bytes,
CachedBytes: item.CachedBytes,
CountRequests: item.CountRequests,
CountCachedRequests: item.CountCachedRequests,
2021-07-13 11:04:38 +08:00
CountAttackRequests: item.CountAttackRequests,
AttackBytes: item.AttackBytes,
2021-07-05 11:36:50 +08:00
CreatedAt: types.Int64(pieces[0]),
})
}
_, err = client.ServerDailyStatRPC().UploadServerDailyStats(client.Context(), &pb.UploadServerDailyStatsRequest{
Stats: pbServerStats,
DomainStats: pbDomainStats,
})
return err
}