Skip to content

Commit aaa7ed8

Browse files
[10.x] Update Horizon Documentation to reflect the allowed waits config values (#9111)
* Update horizon.md to reflect the allowed waits config values * Update horizon.md * Update horizon.md --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 8541e73 commit aaa7ed8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

horizon.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,12 @@ If you would like to be notified when one of your queues has a long wait time, y
373373
<a name="configuring-notification-wait-time-thresholds"></a>
374374
#### Configuring Notification Wait Time Thresholds
375375

376-
You may configure how many seconds are considered a "long wait" within your application's `config/horizon.php` configuration file. The `waits` configuration option within this file allows you to control the long wait threshold for each connection / queue combination:
376+
You may configure how many seconds are considered a "long wait" within your application's `config/horizon.php` configuration file. The `waits` configuration option within this file allows you to control the long wait threshold for each connection / queue combination. Any undefined connection / queue combinations will default to a long wait threshold of 60 seconds:
377377

378378
'waits' => [
379+
'redis:critical' => 30,
379380
'redis:default' => 60,
380-
'redis:critical,high' => 90,
381+
'redis:batch' => 120,
381382
],
382383

383384
<a name="metrics"></a>

0 commit comments

Comments
 (0)