You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package cron
-
- import (
- "gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/svc"
- )
-
- func AddCronGroup(svc *svc.ServiceContext) {
- // 同步任务信息到core端
- svc.Cron.AddFunc("*/5 * * * * ?", func() {
- SyncParticipantRpc(svc)
- })
- // 删除三天前的监控信息
- svc.Cron.AddFunc("*/5 * * * * ?", func() {
- ClearMetricsData(svc)
- })
-
- }
|