🗑 优化无效数据清理

This commit is contained in:
naiba
2021-07-19 20:27:21 +08:00
parent 438a8c393c
commit bb966b2c82
5 changed files with 6 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ import (
pb "github.com/naiba/nezha/proto"
)
var Version = "v0.9.9" // !!记得修改 README 中的 badge 版本!!
var Version = "v0.9.10" // !!记得修改 README 中的 badge 版本!!
var (
Conf *model.Config

View File

@@ -164,9 +164,6 @@ func (ss *ServiceSentinel) OnMonitorUpdate() {
var mhs []model.MonitorHistory
DB.Where("created_at >= ? AND created_at < ?", today.AddDate(0, 0, -29), today).Find(&mhs)
for i := 0; i < len(mhs); i++ {
if ServiceSentinelShared.monthlyStatus[mhs[i].MonitorID] == nil {
continue
}
dayIndex := 28 - (int(today.Sub(mhs[i].CreatedAt).Hours()) / 24)
if mhs[i].Successful {
ServiceSentinelShared.monthlyStatus[mhs[i].MonitorID].TotalUp++