From 6ced549deaecb42b9bb93ea9efcb4c1bbaabe8a4 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Sat, 20 Sep 2025 09:35:50 +0200 Subject: docs: add comments for all functions --- web/job/check_cpu_usage.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'web/job/check_cpu_usage.go') diff --git a/web/job/check_cpu_usage.go b/web/job/check_cpu_usage.go index 5cb9a21e..2ea87747 100644 --- a/web/job/check_cpu_usage.go +++ b/web/job/check_cpu_usage.go @@ -9,16 +9,18 @@ import ( "github.com/shirou/gopsutil/v4/cpu" ) +// CheckCpuJob monitors CPU usage and sends Telegram notifications when usage exceeds the configured threshold. type CheckCpuJob struct { tgbotService service.Tgbot settingService service.SettingService } +// NewCheckCpuJob creates a new CPU monitoring job instance. func NewCheckCpuJob() *CheckCpuJob { return new(CheckCpuJob) } -// Here run is a interface method of Job interface +// Run checks CPU usage over the last minute and sends a Telegram alert if it exceeds the threshold. func (j *CheckCpuJob) Run() { threshold, _ := j.settingService.GetTgCpu() -- cgit v1.2.3