egg_server/schedule/index.ts

28 lines
972 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import schedule from "node-schedule"
import report from "../controller/groupAgent/report"
import { loginPbClient } from "../db/pbClient"
import byteMonitor from "./byteMonitor"
import fmMonitor from "./fmMonitor"
import sendZhongNotify from "./zhongNotify"
export const initSchedule = async () => {
// 定时任务,每周一到周四晚上 8 点 0 分 0 秒执行
schedule.scheduleJob("0 20 * * 1-4", () => report.genAllReport("daily"))
// 定时任务,每周五晚上 8 点 0 分 0 秒执行
schedule.scheduleJob("0 20 * * 5", () => report.genAllReport("weekly"))
// 定时任务,每天早上 6 点 0 分 0 秒执行
schedule.scheduleJob("0 6 * * *", sendZhongNotify)
// 定时任务每5分钟执行一次
schedule.scheduleJob("*/5 * * * *", fmMonitor)
// 定时任务,每小时执行一次
schedule.scheduleJob("0 * * * *", loginPbClient)
// 定时任务,每小时执行一次
schedule.scheduleJob("0 * * * *", byteMonitor)
}