瀏覽代碼

Change the cpu usage interval from second to minute (#2729)

feature(check_cpu_usage): Change the usage interval from second to minute
UltraMegaPotato 4 周之前
父節點
當前提交
cf7fec1351
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/job/check_cpu_usage.go

+ 1 - 1
web/job/check_cpu_usage.go

@@ -23,7 +23,7 @@ func (j *CheckCpuJob) Run() {
 	threshold, _ := j.settingService.GetTgCpu()
 
 	// get latest status of server
-	percent, err := cpu.Percent(1*time.Second, false)
+	percent, err := cpu.Percent(1*time.Minute, false)
 	if err == nil && percent[0] > float64(threshold) {
 		msg := j.tgbotService.I18nBot("tgbot.messages.cpuThreshold",
 			"Percent=="+strconv.FormatFloat(percent[0], 'f', 2, 64),