We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64850cd commit 9f6ea00Copy full SHA for 9f6ea00
config/runtime.exs
@@ -524,7 +524,9 @@ cloud_cron = [
524
# Every midnight
525
{"0 0 * * *", Plausible.Workers.LockSites},
526
# Daily at 8
527
- {"0 8 * * *", Plausible.Workers.AcceptTrafficUntil}
+ {"0 8 * * *", Plausible.Workers.AcceptTrafficUntil},
528
+ # First sunday of the month, 4:00 UTC
529
+ {"0 4 1-7 * SUN", Plausible.Workers.ClickhouseCleanSites}
530
]
531
532
crontab = if(is_selfhost, do: base_cron, else: base_cron ++ cloud_cron)
0 commit comments