Files
trihuy-russian/web/job/check_cpu_usage.go
T

34 lines
741 B
Go
Raw Normal View History

2023-03-17 19:37:49 +03:30
package job
import (
2023-05-21 03:30:26 +04:30
"strconv"
2023-03-17 19:37:49 +03:30
"time"
"x-ui/web/service"
"github.com/shirou/gopsutil/v3/cpu"
)
type CheckCpuJob struct {
tgbotService service.Tgbot
settingService service.SettingService
}
func NewCheckCpuJob() *CheckCpuJob {
return new(CheckCpuJob)
}
// Here run is a interface method of Job interface
func (j *CheckCpuJob) Run() {
threshold, _ := j.settingService.GetTgCpu()
// get latest status of server
percent, err := cpu.Percent(1*time.Second, false)
if err == nil && percent[0] > float64(threshold) {
2023-05-21 03:30:26 +04:30
msg := j.tgbotService.I18nBot("tgbot.messages.cpuThreshold",
"Percent=="+strconv.FormatFloat(percent[0], 'f', 2, 64),
"Threshold=="+strconv.Itoa(threshold))
2023-03-17 19:37:49 +03:30
j.tgbotService.SendMsgToTgbotAdmins(msg)
}
}