mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
137 lines
3.8 KiB
Go
137 lines
3.8 KiB
Go
package models
|
|
|
|
import (
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type MetricSumStatDAO dbs.DAO
|
|
|
|
func NewMetricSumStatDAO() *MetricSumStatDAO {
|
|
return dbs.NewDAO(&MetricSumStatDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeMetricSumStats",
|
|
Model: new(MetricSumStat),
|
|
PkName: "id",
|
|
},
|
|
}).(*MetricSumStatDAO)
|
|
}
|
|
|
|
var SharedMetricSumStatDAO *MetricSumStatDAO
|
|
|
|
func init() {
|
|
dbs.OnReady(func() {
|
|
SharedMetricSumStatDAO = NewMetricSumStatDAO()
|
|
})
|
|
}
|
|
|
|
// UpdateSum 更新统计数据
|
|
func (this *MetricSumStatDAO) UpdateSum(tx *dbs.Tx, clusterId int64, nodeId int64, serverId int64, time string, itemId int64, version int32, count int64, total float32) error {
|
|
return this.Query(tx).
|
|
InsertOrUpdateQuickly(maps.Map{
|
|
"clusterId": clusterId,
|
|
"nodeId": nodeId,
|
|
"serverId": serverId,
|
|
"itemId": itemId,
|
|
"version": version,
|
|
"time": time,
|
|
"count": count,
|
|
"total": total,
|
|
}, maps.Map{
|
|
"count": count,
|
|
"total": total,
|
|
})
|
|
}
|
|
|
|
// FindNodeServerSum 查找某个服务在某个节点上的统计数据
|
|
func (this *MetricSumStatDAO) FindNodeServerSum(tx *dbs.Tx, nodeId int64, serverId int64, time string, itemId int64, version int32) (count int64, total float32, err error) {
|
|
one, err := this.Query(tx).
|
|
Attr("nodeId", nodeId).
|
|
Attr("serverId", serverId).
|
|
Attr("time", time).
|
|
Attr("itemId", itemId).
|
|
Attr("version", version).
|
|
Find()
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
if one == nil {
|
|
return
|
|
}
|
|
return int64(one.(*MetricSumStat).Count), float32(one.(*MetricSumStat).Total), nil
|
|
}
|
|
|
|
// FindSumAtTime 查找某个时间的统计数据
|
|
func (this *MetricSumStatDAO) FindSumAtTime(tx *dbs.Tx, time string, itemId int64, version int32) (count int64, total float32, err error) {
|
|
one, err := this.Query(tx).
|
|
Attr("time", time).
|
|
Attr("itemId", itemId).
|
|
Attr("version", version).
|
|
Result("SUM(count) AS `count`, SUM(total) AS total").
|
|
Find()
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
if one == nil {
|
|
return
|
|
}
|
|
return int64(one.(*MetricSumStat).Count), float32(one.(*MetricSumStat).Total), nil
|
|
}
|
|
|
|
// FindServerSum 查找某个服务的统计数据
|
|
func (this *MetricSumStatDAO) FindServerSum(tx *dbs.Tx, serverId int64, time string, itemId int64, version int32) (count int64, total float32, err error) {
|
|
one, err := this.Query(tx).
|
|
Attr("serverId", serverId).
|
|
Attr("time", time).
|
|
Attr("itemId", itemId).
|
|
Attr("version", version).
|
|
Result("SUM(count) AS `count`, SUM(total) AS total").
|
|
Find()
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
if one == nil {
|
|
return
|
|
}
|
|
return int64(one.(*MetricSumStat).Count), float32(one.(*MetricSumStat).Total), nil
|
|
}
|
|
|
|
// FindClusterSum 查找集群上的统计数据
|
|
func (this *MetricSumStatDAO) FindClusterSum(tx *dbs.Tx, clusterId int64, time string, itemId int64, version int32) (count int64, total float32, err error) {
|
|
one, err := this.Query(tx).
|
|
Attr("clusterId", clusterId).
|
|
Attr("time", time).
|
|
Attr("itemId", itemId).
|
|
Attr("version", version).
|
|
Result("SUM(count) AS `count`, SUM(total) AS total").
|
|
Find()
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
if one == nil {
|
|
return
|
|
}
|
|
return int64(one.(*MetricSumStat).Count), float32(one.(*MetricSumStat).Total), nil
|
|
}
|
|
|
|
// FindNodeSum 查找节点上的统计数据
|
|
func (this *MetricSumStatDAO) FindNodeSum(tx *dbs.Tx, nodeId int64, time string, itemId int64, version int32) (count int64, total float32, err error) {
|
|
one, err := this.Query(tx).
|
|
Attr("nodeId", nodeId).
|
|
Attr("time", time).
|
|
Attr("itemId", itemId).
|
|
Attr("version", version).
|
|
Result("SUM(count) AS `count`, SUM(total) AS total").
|
|
Find()
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
if one == nil {
|
|
return
|
|
}
|
|
return int64(one.(*MetricSumStat).Count), float32(one.(*MetricSumStat).Total), nil
|
|
}
|