File tree 1 file changed +7
-3
lines changed
platform-includes/crons/setup
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,16 @@ protected function schedule(Schedule $schedule)
27
27
$schedule->command('emails:send')
28
28
->everyHour()
29
29
->sentryMonitor(
30
- // Specify the slug of the job monitor in case of duplicate commands or if the monitor was created in the UI
30
+ // Specify the slug of the job monitor in case of duplicate commands or if the monitor was created in the UI.
31
31
monitorSlug: null,
32
- // Check -in margin in minutes
32
+ // Number of minutes before a check -in is considered missed.
33
33
checkInMargin: 5,
34
- // Max runtime in minutes
34
+ // Number of minutes before an in-progress check-in is marked timed out.
35
35
maxRuntime: 15,
36
+ // Create a new issue when this many consecutive missed or error check-ins are processed.
37
+ failureIssueThreshold: 1,
38
+ // Resolve the issue when this many consecutive healthy check-ins are processed.
39
+ recoveryThreshold: 1,
36
40
// In case you want to configure the job monitor exclusively in the UI, you can turn off sending the monitor config with the check-in.
37
41
// Passing a monitor-slug is required in this case.
38
42
updateMonitorConfig: false,
You can’t perform that action at this time.
0 commit comments