2023-03-17 19:07:49 +03:00
|
|
|
package job
|
|
|
|
|
|
|
|
import (
|
2023-05-21 02:00:26 +03:00
|
|
|
"strconv"
|
2023-03-17 19:07:49 +03:00
|
|
|
"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 02:00:26 +03:00
|
|
|
msg := j.tgbotService.I18nBot("tgbot.messages.cpuThreshold",
|
|
|
|
"Percent=="+strconv.FormatFloat(percent[0], 'f', 2, 64),
|
|
|
|
"Threshold=="+strconv.Itoa(threshold))
|
|
|
|
|
2023-03-17 19:07:49 +03:00
|
|
|
j.tgbotService.SendMsgToTgbotAdmins(msg)
|
|
|
|
}
|
|
|
|
}
|