|
@@ -9,6 +9,7 @@ import (
|
|
|
"hongze/mysteel_watch/utils"
|
|
|
"hongze/mysteel_watch/watch"
|
|
|
"os"
|
|
|
+ "strconv"
|
|
|
"strings"
|
|
|
"sync"
|
|
|
"time"
|
|
@@ -286,7 +287,7 @@ func IndexRefreshTimely() {
|
|
|
listLen := 0
|
|
|
defer func() {
|
|
|
if listLen > 0 {
|
|
|
- go alarm_msg.SendAlarmMsg(utils.APPNAME+" 及时刷新指标", 3)
|
|
|
+ go alarm_msg.SendAlarmMsg(utils.APPNAME+" 及时刷新指标, listLen: "+strconv.Itoa(listLen), 3)
|
|
|
}
|
|
|
}()
|
|
|
|