add client ip limit job

This commit is contained in:
Hossin Asaadi
2022-10-29 11:49:27 -04:00
parent d864d20f34
commit 20e7b9e02b
2 changed files with 236 additions and 0 deletions

View File

@@ -295,6 +295,10 @@ func (s *Server) startTask() {
// 每 30 秒检查一次 inbound 流量超出和到期的情况
s.cron.AddJob("@every 30s", job.NewCheckInboundJob())
// check client ips from log file every 1 min
s.cron.AddJob("@every 1m", job.NewCheckClientIpJob())
// 每一天提示一次流量情况,上海时间8点30
var entry cron.EntryID
isTgbotenabled, err := s.settingService.GetTgbotenabled()