add insight worker cron jobs to dev config
This commit is contained in:
parent
1d7eff6afd
commit
cbf0fa74ac
1 changed files with 7 additions and 1 deletions
|
|
@ -85,7 +85,13 @@ config :towerops, Oban,
|
|||
# Compute Preseem baselines and fleet profiles nightly at 2:30 AM
|
||||
{"30 2 * * *", Towerops.Workers.PreseemBaselineWorker},
|
||||
# Sync Gaiia data every 15 minutes
|
||||
{"*/15 * * * *", Towerops.Workers.GaiiaSyncWorker}
|
||||
{"*/15 * * * *", Towerops.Workers.GaiiaSyncWorker},
|
||||
# Device health insights nightly at 3:30 AM
|
||||
{"30 3 * * *", Towerops.Workers.DeviceHealthInsightWorker},
|
||||
# System insights (agent offline detection) every 5 minutes
|
||||
{"*/5 * * * *", Towerops.Workers.SystemInsightWorker},
|
||||
# Gaiia reconciliation insights nightly at 4:30 AM
|
||||
{"30 4 * * *", Towerops.Workers.GaiiaInsightWorker}
|
||||
]},
|
||||
# Automatically delete completed jobs after 60 seconds
|
||||
{Oban.Plugins.Pruner, max_age: 60},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue