dissnik / moonshine-queue-dashboard
Queue monitoring dashboard for MoonShine
Package info
github.com/DissNik/moonshine-queue-dashboard
pkg:composer/dissnik/moonshine-queue-dashboard
2.0.1
2026-03-20 14:45 UTC
Requires
- php: ^8.2
- moonshine/moonshine: ^4.0
README
This package provides a convenient dashboard for monitoring and managing failed jobs in your Laravel application directly from the Moonshine admin panel.
Compatibility
| MoonShine | Moonshine Queue Dashboard |
|---|---|
| >= v3.0 | >= v1.0.0 |
| >= v4.0 | >= v2.0.0 |
Features
- 📊 Queue Overview: View key metrics for all queues.
- 🔄 Task Management: View, resubmit, and delete failed tasks.
- 🎯 Driver Support: Works with Redis, Database, Sync, and other Laravel queue drivers.
Requirements
- PHP 8.1 or higher
- Laravel 10.x or higher
- Moonshine 3.x or higher
Installation
Install the package via Composer:
composer require dissnik/moonshine-queue-dashboard
Usage
The dashboard will automatically appear in your MoonShine admin panel if auto_menu is enabled in config.
You can also manually add the dashboard to your resource:
use DissNik\MoonShineQueueDashboard\Pages\QueueDashboardPage; public function menu(): array { return [ // ... other menu items QueueDashboardPage::make(), ]; }
Publish
Configuration file
php artisan vendor:publish --tag=moonshine-queue-dashboard-config
return [ 'auto_menu' => true, // Automatically add to MoonShine menu 'queues' => ['default'], // Queues to monitor 'auto_refresh' => false, // Enable automatic data refresh 'refresh_interval' => 10000, // Refresh interval in milliseconds ];
Language files
php artisan vendor:publish --tag=moonshine-queue-dashboard-lang
Assets files
php artisan vendor:publish --tag=moonshine-queue-dashboard-assets
All files
php artisan vendor:publish --tag=moonshine-queue-dashboard
Components
Package components can be used on other sites or resources.
Failed Jobs
use DissNik\MoonShineQueueDashboard\Components\FailedJobs; FailedJobs::make();
Queue Metrics
use DissNik\MoonShineQueueDashboard\Components\QueueMetrics; QueueMetrics::make();
Tip
To refresh metrics use Fragment with name 'queue_metrics'
use DissNik\MoonShineQueueDashboard\Components\QueueMetrics; use MoonShine\Laravel\Components\Fragment; Fragment::make([ QueueMetrics::make(), ]) ->name('queue_metrics')