Laravel Horizon: Monitor Your Queues
December 24, 2025
•
1 min read
•
27 views
Table of Contents
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
Related Posts
Laravel Sanctum API Authentication Complete Guide
Build secure API authentication with Laravel Sanctum for SPAs and mobile apps.
Laravel Rate Limiting: Protect Your Application
Implement rate limiting to protect your Laravel application from abuse.
Laravel Blade Components: Build Reusable UI
Create powerful reusable components with Laravel Blade.
Comments (0)
No comments yet. Be the first to comment!