Laravel

Laravel Horizon: Monitor Your Queues

December 24, 2025 1 min read 27 views

Monitor queues with Horizon:

Installation

composer require laravel/horizon
php artisan horizon:install

Configuration

'environments' => [
    'production' => [
        'supervisor-1' => [
            'maxProcesses' => 10,
            'balanceMaxShift' => 1,
        ],
    ],
],

Start Horizon

php artisan horizon

Dashboard

Access at /horizon to see:

- Failed jobs
- Job throughput
- Recent jobs
- Queue metrics
Share this post:

Related Posts

Comments (0)

Please log in to leave a comment. Log in

No comments yet. Be the first to comment!