Hi,
Most of our Watchers execute on a 15 minute interval. We have about 50 watches, so ideally these should execute at "balanced" times; 50 Watchers should not execute simultaneously at 00:00, 00:15, ...
for example.
Does interval: 15m
this mean that:
- Each Watcher runs at
00:00, 00:15, 00:30, ..., 23:45
. In cron-speak,*/15 * * * *
- Or, that they run at multiples of fifteen minutes after the watcher was created (e.g
00:17, 00:33, ...
)?
If they run at */15 * * * *
, is there any built-in way to spread the Watcher execution time out. equivalent to the Jenkins syntax H/15 * * * *
?
Regards,
Ryan