|
@@ -9,6 +9,7 @@ import (
|
|
|
"hongze/mysteel_watch/utils"
|
|
|
"hongze/mysteel_watch/watch"
|
|
|
"os"
|
|
|
+ "strconv"
|
|
|
"strings"
|
|
|
"sync"
|
|
|
"time"
|
|
@@ -183,7 +184,8 @@ func IndexRefreshAll() {
|
|
|
fmt.Println("IndexCreateCheck")
|
|
|
//indexObj := new(index.BaseFromMysteelChemicalIndex)
|
|
|
//list, err := indexObj.GetIndexRefreshAllByMergeFile()
|
|
|
- list, err := watch.GetIndexRefreshAllByMergeFile()
|
|
|
+ frequency := global.CONFIG.Serve.Frequency
|
|
|
+ list, err := watch.GetIndexRefreshAllByMergeFile(frequency)
|
|
|
if err != nil {
|
|
|
fmt.Println("GetIndexRefreshAll Err:" + err.Error())
|
|
|
return
|
|
@@ -283,7 +285,12 @@ func IndexRefreshMethanol() {
|
|
|
|
|
|
func IndexRefreshTimely() {
|
|
|
fmt.Println("IndexRefreshTimely")
|
|
|
- go alarm_msg.SendAlarmMsg(utils.APPNAME+" 及时刷新指标", 3)
|
|
|
+ listLen := 0
|
|
|
+ defer func() {
|
|
|
+ if listLen > 0 {
|
|
|
+ go alarm_msg.SendAlarmMsg(utils.APPNAME+" 及时刷新指标, listLen: "+strconv.Itoa(listLen), 3)
|
|
|
+ }
|
|
|
+ }()
|
|
|
|
|
|
//indexObj := new(index.BaseFromMysteelChemicalIndex)
|
|
|
//list, err := indexObj.GetIndexRefreshMethanolByTimely()
|
|
@@ -292,8 +299,9 @@ func IndexRefreshTimely() {
|
|
|
fmt.Println("GetIndexRefreshAll Err:" + err.Error())
|
|
|
return
|
|
|
}
|
|
|
+ listLen = len(list)
|
|
|
fmt.Println("listLen:", len(list))
|
|
|
- if len(list) <= 0 {
|
|
|
+ if listLen <= 0 {
|
|
|
return
|
|
|
}
|
|
|
now := time.Now()
|