mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 17:40:24 +08:00
135 lines
4.2 KiB
Go
135 lines
4.2 KiB
Go
|
|
package stats
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeAPI/internal/errors"
|
||
|
|
"github.com/TeaOSLab/EdgeAPI/internal/remotelogs"
|
||
|
|
"github.com/TeaOSLab/EdgeAPI/internal/utils"
|
||
|
|
_ "github.com/go-sql-driver/mysql"
|
||
|
|
"github.com/iwind/TeaGo/Tea"
|
||
|
|
"github.com/iwind/TeaGo/dbs"
|
||
|
|
"github.com/iwind/TeaGo/maps"
|
||
|
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type NodeTrafficHourlyStatDAO dbs.DAO
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
dbs.OnReadyDone(func() {
|
||
|
|
// 清理数据任务
|
||
|
|
var ticker = time.NewTicker(24 * time.Hour)
|
||
|
|
go func() {
|
||
|
|
for range ticker.C {
|
||
|
|
err := SharedNodeTrafficHourlyStatDAO.Clean(nil, 60) // 只保留60天
|
||
|
|
if err != nil {
|
||
|
|
remotelogs.Error("NodeTrafficHourlyStatDAO", "clean expired data failed: "+err.Error())
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}()
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewNodeTrafficHourlyStatDAO() *NodeTrafficHourlyStatDAO {
|
||
|
|
return dbs.NewDAO(&NodeTrafficHourlyStatDAO{
|
||
|
|
DAOObject: dbs.DAOObject{
|
||
|
|
DB: Tea.Env,
|
||
|
|
Table: "edgeNodeTrafficHourlyStats",
|
||
|
|
Model: new(NodeTrafficHourlyStat),
|
||
|
|
PkName: "id",
|
||
|
|
},
|
||
|
|
}).(*NodeTrafficHourlyStatDAO)
|
||
|
|
}
|
||
|
|
|
||
|
|
var SharedNodeTrafficHourlyStatDAO *NodeTrafficHourlyStatDAO
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
dbs.OnReady(func() {
|
||
|
|
SharedNodeTrafficHourlyStatDAO = NewNodeTrafficHourlyStatDAO()
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// IncreaseHourlyStat 增加统计数据
|
||
|
|
func (this *NodeTrafficHourlyStatDAO) IncreaseHourlyStat(tx *dbs.Tx, clusterId int64, role string, nodeId int64, hour string, bytes int64, cachedBytes int64, countRequests int64, countCachedRequests int64) error {
|
||
|
|
if len(hour) != 10 {
|
||
|
|
return errors.New("invalid hour '" + hour + "'")
|
||
|
|
}
|
||
|
|
err := this.Query(tx).
|
||
|
|
Param("bytes", bytes).
|
||
|
|
Param("cachedBytes", cachedBytes).
|
||
|
|
Param("countRequests", countRequests).
|
||
|
|
Param("countCachedRequests", countCachedRequests).
|
||
|
|
InsertOrUpdateQuickly(maps.Map{
|
||
|
|
"clusterId": clusterId,
|
||
|
|
"role": role,
|
||
|
|
"nodeId": nodeId,
|
||
|
|
"hour": hour,
|
||
|
|
"bytes": bytes,
|
||
|
|
"cachedBytes": cachedBytes,
|
||
|
|
"countRequests": countRequests,
|
||
|
|
"countCachedRequests": countCachedRequests,
|
||
|
|
}, maps.Map{
|
||
|
|
"bytes": dbs.SQL("bytes+:bytes"),
|
||
|
|
"cachedBytes": dbs.SQL("cachedBytes+:cachedBytes"),
|
||
|
|
"countRequests": dbs.SQL("countRequests+:countRequests"),
|
||
|
|
"countCachedRequests": dbs.SQL("countCachedRequests+:countCachedRequests"),
|
||
|
|
})
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// FindHourlyStatsWithClusterId 获取小时之间统计
|
||
|
|
func (this *NodeTrafficHourlyStatDAO) FindHourlyStatsWithClusterId(tx *dbs.Tx, clusterId int64, hourFrom string, hourTo string) (result []*NodeTrafficHourlyStat, err error) {
|
||
|
|
ones, err := this.Query(tx).
|
||
|
|
Attr("clusterId", clusterId).
|
||
|
|
Between("hour", hourFrom, hourTo).
|
||
|
|
Result("hour, SUM(bytes) AS bytes, SUM(cachedBytes) AS cachedBytes, SUM(countRequests) AS countRequests, SUM(countCachedRequests) AS countCachedRequests").
|
||
|
|
Group("hour").
|
||
|
|
FindAll()
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
hourMap := map[string]*NodeTrafficHourlyStat{} // hour => Stat
|
||
|
|
for _, one := range ones {
|
||
|
|
stat := one.(*NodeTrafficHourlyStat)
|
||
|
|
hourMap[stat.Hour] = stat
|
||
|
|
}
|
||
|
|
hours, err := utils.RangeHours(hourFrom, hourTo)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
for _, hour := range hours {
|
||
|
|
stat, ok := hourMap[hour]
|
||
|
|
if ok {
|
||
|
|
result = append(result, stat)
|
||
|
|
} else {
|
||
|
|
result = append(result, &NodeTrafficHourlyStat{Hour: hour})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return result, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// FindTopNodeStatsWithClusterId 取得一定时间内的节点排行数据
|
||
|
|
func (this *NodeTrafficHourlyStatDAO) FindTopNodeStatsWithClusterId(tx *dbs.Tx, clusterId int64, hourFrom string, hourTo string) (result []*NodeTrafficHourlyStat, err error) {
|
||
|
|
// TODO 节点如果已经被删除,则忽略
|
||
|
|
_, err = this.Query(tx).
|
||
|
|
Attr("clusterId", clusterId).
|
||
|
|
Between("hour", hourFrom, hourTo).
|
||
|
|
Result("nodeId, SUM(bytes) AS bytes, SUM(cachedBytes) AS cachedBytes, SUM(countRequests) AS countRequests, SUM(countCachedRequests) AS countCachedRequests").
|
||
|
|
Group("nodeId").
|
||
|
|
Desc("countRequests").
|
||
|
|
Slice(&result).
|
||
|
|
FindAll()
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
// Clean 清理历史数据
|
||
|
|
func (this *NodeTrafficHourlyStatDAO) Clean(tx *dbs.Tx, days int) error {
|
||
|
|
var hour = timeutil.Format("Ymd00", time.Now().AddDate(0, 0, -days))
|
||
|
|
_, err := this.Query(tx).
|
||
|
|
Lt("hour", hour).
|
||
|
|
Delete()
|
||
|
|
return err
|
||
|
|
}
|