Laravel Horizon: Monitoring Queues in Production
Monitor Redis queues and workers using Laravel Horizon’s real-time dashboard.
Grace Wilson
September 21, 2025
2.9k63
Horizon provides insight into your queue system.
## Install Horizon
```bash
composer require laravel/horizon
php artisan horizon:install
php artisan migrate
php artisan horizon
```
## Horizon flow
```mermaid
flowchart LR
A[Dispatch Job] --> B[(Redis)]
C[Horizon Worker] --> B
C --> D[Process Job]
E[Dashboard] --> C
```
Horizon helps keep background jobs healthy.
In the next tutorial, we will localize the application.
#Laravel#Queues#Monitoring#Advanced