|
@@ -6,6 +6,7 @@ import (
|
|
|
"fmt"
|
|
|
"github.com/rdlucklib/rdluck_tools/http"
|
|
|
"hongze/hongze_task/models/data_manage"
|
|
|
+ "hongze/hongze_task/services/alarm_msg"
|
|
|
"hongze/hongze_task/utils"
|
|
|
"sync"
|
|
|
)
|
|
@@ -161,17 +162,17 @@ func RefreshDataFromPb(wg *sync.WaitGroup) (err error) {
|
|
|
for _, v := range items {
|
|
|
startDate := ""
|
|
|
if v.Frequency == "日度" {
|
|
|
- startDate = v.EndDate.AddDate(0, 0, -utils.DATA_REFRESH).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(0, 0, -utils.DATA_REFRESH).Format(utils.FormatDate)
|
|
|
} else if v.Frequency == "周度" {
|
|
|
- startDate = v.EndDate.AddDate(0, 0, -(utils.DATA_REFRESH * 7)).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(0, 0, -(utils.DATA_REFRESH * 7)).Format(utils.FormatDate)
|
|
|
} else if v.Frequency == "月度" {
|
|
|
- startDate = v.EndDate.AddDate(0, -utils.DATA_REFRESH, 0).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(0, -utils.DATA_REFRESH, 0).Format(utils.FormatDate)
|
|
|
} else if v.Frequency == "季度" {
|
|
|
- startDate = v.EndDate.AddDate(0, -utils.DATA_REFRESH*3, 0).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(0, -utils.DATA_REFRESH*3, 0).Format(utils.FormatDate)
|
|
|
} else if v.Frequency == "年度" {
|
|
|
- startDate = v.EndDate.AddDate(-utils.DATA_REFRESH, 0, 0).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(-utils.DATA_REFRESH, 0, 0).Format(utils.FormatDate)
|
|
|
} else {
|
|
|
- startDate = v.EndDate.AddDate(0, 0, -utils.DATA_REFRESH).Format(utils.FormatDateUnSpace)
|
|
|
+ startDate = v.EndDate.AddDate(0, 0, -utils.DATA_REFRESH).Format(utils.FormatDate)
|
|
|
}
|
|
|
//err = SyncEdbDataByPb(int64(v.EdbInfoId), v.EdbCode, startDate, endDate)
|
|
|
//if err != nil {
|
|
@@ -214,11 +215,15 @@ func CheckDataInterface(cont context.Context) (err error) {
|
|
|
checkUrl := utils.Hz_Data_Url + `hz_server`
|
|
|
body, err := http.Get(checkUrl)
|
|
|
if err != nil {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ msg := "检测wind数据服务器失败:CheckDataInterface ErrMsg:" + err.Error()
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
} else {
|
|
|
result := string(body)
|
|
|
if result != "1" {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ msg := "检测wind数据服务器失败:CheckDataInterface ErrMsg:" + string(body)
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -228,11 +233,15 @@ func CheckDataInterface(cont context.Context) (err error) {
|
|
|
checkUrl2 := utils.Hz_Server_Data_Url + `hz_server`
|
|
|
body, err := http.Get(checkUrl2)
|
|
|
if err != nil {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测服务器数据接口:失败提醒", "CheckDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测服务器数据接口:失败提醒", "CheckDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ msg := "检测同花顺数据-阿里云服务器失败:CheckPbDataInterface ErrMsg:" + err.Error()
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
} else {
|
|
|
result := string(body)
|
|
|
if result != "1" {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测服务器数据接口:失败提醒", "CheckDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测服务器数据接口:失败提醒", "CheckDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ msg := "检测同花顺数据-阿里云服务器失败:CheckPbDataInterface ErrMsg:" + err.Error()
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -245,11 +254,15 @@ func CheckPbDataInterface(cont context.Context) (err error) {
|
|
|
checkUrl := utils.Hz_Data_PB_Url + `hz_server`
|
|
|
body, err := http.Get(checkUrl)
|
|
|
if err != nil {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckPbDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckPbDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ msg := "检测彭博数据服务器失败:CheckPbDataInterface ErrMsg:" + err.Error()
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
} else {
|
|
|
result := string(body)
|
|
|
if result != "1" {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckPbDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "CheckPbDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ msg := "检测彭博数据服务器失败:CheckPbDataInterface ErrMsg:" + string(body)
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
}
|
|
|
}
|
|
|
}()
|
|
@@ -262,11 +275,15 @@ func CheckLtDataInterface(cont context.Context) (err error) {
|
|
|
checkUrl := utils.Hz_Data_LT_Url + `hz_server`
|
|
|
body, err := http.Get(checkUrl)
|
|
|
if err != nil {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:"+err.Error(), utils.EmailSendToUsers)
|
|
|
+ msg := "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:" + err.Error()
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
} else {
|
|
|
result := string(body)
|
|
|
if result != `"ek true"` {
|
|
|
- go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"检测数据接口:失败提醒", "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:"+string(body), utils.EmailSendToUsers)
|
|
|
+ msg := "检测路透数据服务器失败:CheckLtDataInterface ErrMsg:" + string(body)
|
|
|
+ go alarm_msg.SendAlarmMsg(msg, 3)
|
|
|
}
|
|
|
}
|
|
|
}()
|