@@ -18,12 +18,12 @@ A lightweight, zero-dependency web interface for monitoring Solid Queue backgrou
1818- ** Dashboard Overview** : Get a quick snapshot of your queue's health with statistics on all job types
1919- ** Ready Jobs** : View jobs that are ready to be executed
2020- ** In Progress Jobs** : Monitor jobs currently being processed by workers
21- - ** Scheduled Jobs** : See upcoming jobs scheduled for future execution
21+ - ** Scheduled Jobs** : See upcoming jobs scheduled for future execution with ability to execute immediately or reject permanently
2222- ** Recurring Jobs** : Manage periodic jobs that run on a schedule
2323- ** Failed Jobs** : Track and debug failed jobs, with the ability to retry or discard them
2424- ** Queue Management** : View and filter jobs by queue
2525- ** Advanced Job Filtering** : Filter jobs by class name, queue, status, and job arguments
26- - ** Quick Actions** : Retry or discard failed jobs directly from any view
26+ - ** Quick Actions** : Retry or discard failed jobs, execute or reject scheduled jobs directly from any view
2727- ** Performance Optimized** : Designed for high-volume applications with smart pagination
2828- ** Optional Authentication** : Secure your dashboard with HTTP Basic Authentication
2929- ** Responsive Design** : Works on desktop and mobile devices
@@ -44,7 +44,7 @@ A lightweight, zero-dependency web interface for monitoring Solid Queue backgrou
4444Add this line to your application's Gemfile:
4545
4646``` ruby
47- gem ' solid_queue_monitor' , ' ~> 0.3.1 '
47+ gem ' solid_queue_monitor' , ' ~> 0.3.2 '
4848```
4949
5050Then execute:
@@ -103,9 +103,9 @@ The dashboard provides several views:
103103
104104- ** Overview** : Shows statistics and recent jobs
105105- ** Ready Jobs** : Jobs that are ready to be executed
106- - ** Scheduled Jobs** : Jobs scheduled for future execution
106+ - ** Scheduled Jobs** : Jobs scheduled for future execution with execute and reject actions
107107- ** Recurring Jobs** : Jobs that run on a recurring schedule
108- - ** Failed Jobs** : Jobs that have failed with error details
108+ - ** Failed Jobs** : Jobs that have failed with error details and retry/discard actions
109109- ** Queues** : Distribution of jobs across different queues
110110
111111### API-only Applications
@@ -127,7 +127,7 @@ This makes it easy to find specific jobs when debugging issues in your applicati
127127
128128- ** Production Monitoring** : Keep an eye on your background job processing in production environments
129129- ** Debugging** : Quickly identify and troubleshoot failed jobs
130- - ** Job Management** : Execute scheduled jobs on demand when needed
130+ - ** Job Management** : Execute scheduled jobs on demand or reject unwanted jobs permanently
131131- ** Performance Analysis** : Track job distribution and identify bottlenecks
132132- ** DevOps Integration** : Easily integrate with your monitoring stack
133133
0 commit comments