solid_queue_web 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +47 -12
- data/app/assets/stylesheets/solid_queue_web/application.css +155 -1
- data/app/controllers/solid_queue_web/dashboard_controller.rb +2 -1
- data/app/controllers/solid_queue_web/jobs_controller.rb +4 -3
- data/app/controllers/solid_queue_web/recurring_tasks_controller.rb +7 -0
- data/app/javascript/solid_queue_web/application.js +6 -0
- data/app/javascript/solid_queue_web/search_controller.js +11 -0
- data/app/views/layouts/solid_queue_web/application.html.erb +24 -12
- data/app/views/solid_queue_web/dashboard/index.html.erb +5 -0
- data/app/views/solid_queue_web/failed_jobs/index.html.erb +5 -5
- data/app/views/solid_queue_web/jobs/index.html.erb +26 -12
- data/app/views/solid_queue_web/processes/index.html.erb +7 -7
- data/app/views/solid_queue_web/queues/index.html.erb +5 -5
- data/app/views/solid_queue_web/recurring_tasks/index.html.erb +68 -0
- data/config/importmap.rb +2 -0
- data/config/routes.rb +1 -0
- data/lib/solid_queue_web/engine.rb +13 -0
- data/lib/solid_queue_web/version.rb +1 -1
- data/lib/solid_queue_web.rb +1 -0
- metadata +20 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 313999fb3e2f6307b5f5e65bd8be047935bc04894d4bc1cfb94f2b87e945f9ac
|
|
4
|
+
data.tar.gz: d107e00893b0f8cd655d096c59778bb171b1c10c4f6716d4ec88182957ba0dfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 796462cdaf3a6c1e40daf0fe0f9d398f9ae3e095ff22dadd2938330d2159f6cce468770582a114a52bf68de9f5eb05ce2336c8ca333bd5e3e8effa62d3f58707
|
|
7
|
+
data.tar.gz: 6b30554ce77a3daf354848bd7c80eea666fe8dda09b487ec246ccd7ab47adbc9ae42e43f6c82c6a73da3918a9d93f3ee48a5bcc5c126aac49079d1b5de24e47b
|
data/README.md
CHANGED
|
@@ -1,19 +1,60 @@
|
|
|
1
1
|
# SolidQueueWeb
|
|
2
2
|
|
|
3
|
-
[](https://github.com/eclectic-coding/solid_queue_web/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/solid_queue_web)
|
|
5
|
+
[](https://rubygems.org/gems/solid_queue_web)
|
|
6
|
+
[](https://rubygems.org/gems/solid_queue_web)
|
|
7
|
+
[](https://codecov.io/gh/eclectic-coding/solid_queue_web)
|
|
4
8
|
|
|
5
|
-
A
|
|
9
|
+
A monitoring and management dashboard for [Solid Queue](https://github.com/rails/solid_queue), mountable as a Rails engine in any app.
|
|
10
|
+
|
|
11
|
+
## The problem
|
|
12
|
+
|
|
13
|
+
Solid Queue ships without a web interface. When jobs fail, queues back up, or workers go silent in production, the only options are `rails console` or raw SQL queries. SolidQueueWeb gives your team a real-time dashboard to inspect, retry, and discard jobs without leaving the browser — and without standing up any additional infrastructure.
|
|
14
|
+
|
|
15
|
+
## Why SolidQueueWeb?
|
|
16
|
+
|
|
17
|
+
- Purpose-built for Solid Queue — uses its native models directly, no adapters
|
|
18
|
+
- No external CSS framework — drops into any Rails app without asset conflicts
|
|
19
|
+
- Zero-config to start — one line in `routes.rb` and you're running
|
|
20
|
+
- Built for Rails 8 — Turbo Frames for in-place updates, Stimulus for dynamic search, Pagy for efficient pagination
|
|
21
|
+
- Inspired by Sidekiq Web UI and the GoodJob dashboard, adapted for the Solid Queue ecosystem
|
|
22
|
+
|
|
23
|
+
## Real-world use case
|
|
24
|
+
|
|
25
|
+
A Rails app processes order confirmations, email notifications, and report generation through Solid Queue. An operations team needs to:
|
|
26
|
+
|
|
27
|
+
- Monitor queue depth before a high-traffic event
|
|
28
|
+
- Retry a batch of failed notification jobs after a third-party API outage
|
|
29
|
+
- Pause a queue while a fix is being deployed
|
|
30
|
+
- Identify blocked or long-running jobs before they impact users
|
|
31
|
+
|
|
32
|
+
SolidQueueWeb surfaces all of this in a browser UI available at any route you choose.
|
|
6
33
|
|
|
7
34
|
## Features
|
|
8
35
|
|
|
9
|
-
- **Dashboard** — stat cards showing counts for ready, scheduled, running, blocked, and failed jobs, plus queues and processes
|
|
36
|
+
- **Dashboard** — stat cards showing counts for ready, scheduled, running, blocked, and failed jobs, plus queues, recurring tasks, and processes
|
|
10
37
|
- **Queues** — all queues sorted by name
|
|
11
|
-
- **Jobs** — filterable by status (ready, scheduled, claimed, blocked, failed) and by queue; discard individual or all jobs
|
|
38
|
+
- **Jobs** — filterable by status (ready, scheduled, claimed, blocked, failed) and by queue; search by job class name with dynamic auto-submit; discard individual or all jobs; Turbo Frame navigation so only the table updates on filter or search
|
|
12
39
|
- **Failed jobs** — list of failed executions with error details; retry or discard individually or in bulk
|
|
13
40
|
- **Job detail** — full arguments, timestamps, and error backtrace; action buttons based on job status
|
|
14
41
|
- **Queue management** — pause and resume individual queues
|
|
42
|
+
- **Recurring tasks** — all configured recurring tasks with cron schedule, next run time, last run time, and static/dynamic classification
|
|
15
43
|
- **Processes** — workers, dispatchers, and supervisors with heartbeat health status
|
|
16
|
-
|
|
44
|
+
|
|
45
|
+
## Screenshots
|
|
46
|
+
|
|
47
|
+

|
|
48
|
+
|
|
49
|
+
## Compatibility
|
|
50
|
+
|
|
51
|
+
| Dependency | Version |
|
|
52
|
+
|-------------|------------|
|
|
53
|
+
| Ruby | >= 3.3 |
|
|
54
|
+
| Rails | >= 8.1.3 |
|
|
55
|
+
| Solid Queue | >= 1.0 |
|
|
56
|
+
|
|
57
|
+
Tested on Ruby 3.3, 3.4, and 4.0.
|
|
17
58
|
|
|
18
59
|
## Installation
|
|
19
60
|
|
|
@@ -37,7 +78,7 @@ Add to your `config/routes.rb`:
|
|
|
37
78
|
mount SolidQueueWeb::Engine, at: "/jobs"
|
|
38
79
|
```
|
|
39
80
|
|
|
40
|
-
The dashboard will be available at `/jobs`.
|
|
81
|
+
The dashboard will be available at `/jobs`. See [Authentication](#authentication) to restrict access to admin users.
|
|
41
82
|
|
|
42
83
|
## Authentication
|
|
43
84
|
|
|
@@ -53,12 +94,6 @@ end
|
|
|
53
94
|
|
|
54
95
|
HTTP Basic authentication is used as a fallback when the block returns falsy.
|
|
55
96
|
|
|
56
|
-
## Requirements
|
|
57
|
-
|
|
58
|
-
- Ruby >= 3.3
|
|
59
|
-
- Rails >= 8.1.3
|
|
60
|
-
- solid_queue >= 1.0
|
|
61
|
-
|
|
62
97
|
## Contributing
|
|
63
98
|
|
|
64
99
|
Bug reports and pull requests are welcome on [GitHub](https://github.com/eclectic-coding/solid_queue_web).
|
|
@@ -4,6 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
6
6
|
|
|
7
|
+
.sqd-sr-only {
|
|
8
|
+
position: absolute;
|
|
9
|
+
width: 1px;
|
|
10
|
+
height: 1px;
|
|
11
|
+
padding: 0;
|
|
12
|
+
margin: -1px;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
clip: rect(0, 0, 0, 0);
|
|
15
|
+
white-space: nowrap;
|
|
16
|
+
border: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:focus-visible {
|
|
20
|
+
outline: 2px solid var(--primary);
|
|
21
|
+
outline-offset: 2px;
|
|
22
|
+
border-radius: 2px;
|
|
23
|
+
}
|
|
24
|
+
|
|
7
25
|
:root {
|
|
8
26
|
--bg: #f8f9fa;
|
|
9
27
|
--surface: #ffffff;
|
|
@@ -30,6 +48,11 @@ body {
|
|
|
30
48
|
.sqd-header {
|
|
31
49
|
background: var(--surface);
|
|
32
50
|
border-bottom: 1px solid var(--border);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.sqd-header__inner {
|
|
54
|
+
max-width: 1200px;
|
|
55
|
+
margin: 0 auto;
|
|
33
56
|
padding: 0 1.5rem;
|
|
34
57
|
display: flex;
|
|
35
58
|
align-items: center;
|
|
@@ -67,6 +90,28 @@ body {
|
|
|
67
90
|
color: var(--text);
|
|
68
91
|
}
|
|
69
92
|
|
|
93
|
+
.sqd-nav-toggle {
|
|
94
|
+
display: none;
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
justify-content: center;
|
|
97
|
+
gap: 5px;
|
|
98
|
+
width: 36px;
|
|
99
|
+
height: 36px;
|
|
100
|
+
padding: 6px;
|
|
101
|
+
margin-left: auto;
|
|
102
|
+
background: none;
|
|
103
|
+
border: 1px solid var(--border);
|
|
104
|
+
border-radius: 5px;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sqd-nav-toggle span {
|
|
109
|
+
display: block;
|
|
110
|
+
height: 2px;
|
|
111
|
+
background: var(--text);
|
|
112
|
+
border-radius: 1px;
|
|
113
|
+
}
|
|
114
|
+
|
|
70
115
|
.sqd-main {
|
|
71
116
|
max-width: 1200px;
|
|
72
117
|
margin: 0 auto;
|
|
@@ -104,7 +149,7 @@ body {
|
|
|
104
149
|
/* Stat cards */
|
|
105
150
|
.sqd-stats {
|
|
106
151
|
display: grid;
|
|
107
|
-
grid-template-columns: repeat(auto-fill, minmax(
|
|
152
|
+
grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
|
|
108
153
|
gap: 1rem;
|
|
109
154
|
margin-bottom: 2rem;
|
|
110
155
|
}
|
|
@@ -138,6 +183,7 @@ body {
|
|
|
138
183
|
.sqd-stat--blocked .sqd-stat__value { color: var(--warning); }
|
|
139
184
|
.sqd-stat--queues .sqd-stat__value { color: var(--purple); }
|
|
140
185
|
.sqd-stat--processes .sqd-stat__value { color: var(--muted); }
|
|
186
|
+
.sqd-stat--recurring .sqd-stat__value { color: var(--info); }
|
|
141
187
|
|
|
142
188
|
.sqd-stat--link {
|
|
143
189
|
display: block;
|
|
@@ -222,6 +268,8 @@ tbody tr:hover { background: var(--bg); }
|
|
|
222
268
|
.sqd-badge--claimed { background: #cfe2ff; color: #084298; }
|
|
223
269
|
.sqd-badge--failed { background: #f8d7da; color: #842029; }
|
|
224
270
|
.sqd-badge--blocked { background: #fff3cd; color: #664d03; }
|
|
271
|
+
.sqd-badge--static { background: #d1e7dd; color: #0f5132; }
|
|
272
|
+
.sqd-badge--dynamic { background: #e0d7f5; color: #4a2c8a; }
|
|
225
273
|
.sqd-badge--paused { background: #e2e3e5; color: #41464b; }
|
|
226
274
|
.sqd-badge--running { background: #d1e7dd; color: #0f5132; }
|
|
227
275
|
.sqd-badge--supervisor { background: #e0d7f5; color: #4a2c8a; }
|
|
@@ -254,6 +302,36 @@ tbody tr:hover { background: var(--bg); }
|
|
|
254
302
|
.sqd-row-actions { white-space: nowrap; text-align: right; width: 1%; }
|
|
255
303
|
.sqd-row-actions form { display: inline; margin-left: 0.25rem; }
|
|
256
304
|
|
|
305
|
+
/* Search */
|
|
306
|
+
.sqd-search {
|
|
307
|
+
display: flex;
|
|
308
|
+
gap: 0.5rem;
|
|
309
|
+
align-items: center;
|
|
310
|
+
margin-bottom: 1rem;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.sqd-search__input {
|
|
314
|
+
width: 280px;
|
|
315
|
+
padding: 0.35rem 0.75rem;
|
|
316
|
+
border: 1px solid var(--border);
|
|
317
|
+
border-radius: 5px;
|
|
318
|
+
font-size: 13px;
|
|
319
|
+
background: var(--surface);
|
|
320
|
+
color: var(--text);
|
|
321
|
+
line-height: 1.5;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.sqd-search__input:focus {
|
|
325
|
+
outline: 2px solid var(--primary);
|
|
326
|
+
outline-offset: -1px;
|
|
327
|
+
border-color: var(--primary);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@media (max-width: 640px) {
|
|
331
|
+
.sqd-search { flex-wrap: wrap; }
|
|
332
|
+
.sqd-search__input { width: 100%; }
|
|
333
|
+
}
|
|
334
|
+
|
|
257
335
|
/* Filters */
|
|
258
336
|
.sqd-filters {
|
|
259
337
|
display: flex;
|
|
@@ -344,8 +422,84 @@ nav.pagy a[aria-disabled="true"] { color: var(--muted); cursor: default; }
|
|
|
344
422
|
gap: 1.5rem;
|
|
345
423
|
}
|
|
346
424
|
|
|
425
|
+
.sqd-grid-2 {
|
|
426
|
+
display: grid;
|
|
427
|
+
grid-template-columns: 1fr 1fr;
|
|
428
|
+
gap: 1rem;
|
|
429
|
+
}
|
|
430
|
+
|
|
347
431
|
@media (max-width: 768px) {
|
|
348
432
|
.sqd-detail-grid { grid-template-columns: 1fr; }
|
|
433
|
+
.sqd-grid-2 { grid-template-columns: 1fr; }
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
@media (max-width: 640px) {
|
|
437
|
+
.sqd-main {
|
|
438
|
+
padding: 1.5rem 1rem;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.sqd-page-header {
|
|
442
|
+
flex-direction: column;
|
|
443
|
+
align-items: flex-start;
|
|
444
|
+
gap: 0.75rem;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.sqd-card {
|
|
448
|
+
overflow-x: auto;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.sqd-card__header {
|
|
452
|
+
flex-wrap: wrap;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.sqd-stats {
|
|
456
|
+
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.sqd-truncate {
|
|
460
|
+
max-width: 160px;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
@media (max-width: 576px) {
|
|
465
|
+
.sqd-header {
|
|
466
|
+
position: relative;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.sqd-header__inner {
|
|
470
|
+
padding: 0 1rem;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.sqd-nav-toggle {
|
|
474
|
+
display: flex;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.sqd-nav-wrapper {
|
|
478
|
+
display: none;
|
|
479
|
+
position: absolute;
|
|
480
|
+
top: 100%;
|
|
481
|
+
left: 0;
|
|
482
|
+
right: 0;
|
|
483
|
+
background: var(--surface);
|
|
484
|
+
border-bottom: 1px solid var(--border);
|
|
485
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
486
|
+
z-index: 50;
|
|
487
|
+
padding: 0.5rem;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.sqd-nav-wrapper.sqd-nav--open {
|
|
491
|
+
display: block;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.sqd-nav {
|
|
495
|
+
flex-direction: column;
|
|
496
|
+
gap: 0.25rem;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.sqd-nav a {
|
|
500
|
+
padding: 0.5rem 0.75rem;
|
|
501
|
+
font-size: 14px;
|
|
502
|
+
}
|
|
349
503
|
}
|
|
350
504
|
|
|
351
505
|
.sqd-detail-section { padding: 1.25rem; }
|
|
@@ -8,7 +8,8 @@ module SolidQueueWeb
|
|
|
8
8
|
failed: SolidQueue::FailedExecution.count,
|
|
9
9
|
blocked: SolidQueue::BlockedExecution.count,
|
|
10
10
|
queues: SolidQueue::Job.select(:queue_name).distinct.count,
|
|
11
|
-
processes: SolidQueue::Process.count
|
|
11
|
+
processes: SolidQueue::Process.count,
|
|
12
|
+
recurring: SolidQueue::RecurringTask.count
|
|
12
13
|
}
|
|
13
14
|
end
|
|
14
15
|
end
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
module SolidQueueWeb
|
|
2
2
|
class JobsController < ApplicationController
|
|
3
|
-
STATUSES = %w[ready scheduled claimed blocked failed].freeze
|
|
4
|
-
DISCARDABLE = %w[ready scheduled blocked].freeze
|
|
5
|
-
|
|
6
3
|
before_action :set_status_and_queue, only: [ :destroy, :discard_all ]
|
|
7
4
|
|
|
5
|
+
STATUSES = %w[ready scheduled claimed blocked failed].freeze
|
|
6
|
+
DISCARDABLE = %w[ready scheduled blocked].freeze
|
|
8
7
|
EXECUTION_MODELS = {
|
|
9
8
|
"ready" => SolidQueue::ReadyExecution,
|
|
10
9
|
"scheduled" => SolidQueue::ScheduledExecution,
|
|
@@ -16,8 +15,10 @@ module SolidQueueWeb
|
|
|
16
15
|
def index
|
|
17
16
|
@status = params[:status].presence_in(STATUSES) || "ready"
|
|
18
17
|
@queue = params[:queue].presence
|
|
18
|
+
@search = params[:q].presence
|
|
19
19
|
@jobs = EXECUTION_MODELS[@status].includes(:job)
|
|
20
20
|
@jobs = @jobs.where(jobs: { queue_name: @queue }) if @queue.present?
|
|
21
|
+
@jobs = @jobs.references(:job).where("solid_queue_jobs.class_name LIKE ?", "%#{@search}%") if @search.present?
|
|
21
22
|
@pagy, @jobs = pagy(@jobs.order(created_at: :desc))
|
|
22
23
|
end
|
|
23
24
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Controller } from "@hotwired/stimulus"
|
|
2
|
+
|
|
3
|
+
export default class extends Controller {
|
|
4
|
+
filter({ target }) {
|
|
5
|
+
clearTimeout(this._timer)
|
|
6
|
+
const len = target.value.length
|
|
7
|
+
if (len >= 4 || len === 0) {
|
|
8
|
+
this._timer = setTimeout(() => target.form.requestSubmit(), 300)
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -7,28 +7,40 @@
|
|
|
7
7
|
<%= csrf_meta_tags %>
|
|
8
8
|
<%= csp_meta_tag %>
|
|
9
9
|
<%= inline_styles %>
|
|
10
|
+
<%= javascript_importmap_tags "solid_queue_web" %>
|
|
10
11
|
</head>
|
|
11
12
|
<body>
|
|
12
13
|
|
|
13
14
|
<header class="sqd-header">
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
<
|
|
19
|
-
<
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
15
|
+
<div class="sqd-header__inner">
|
|
16
|
+
<%= link_to "Solid Queue", root_path, class: "sqd-header__title" %>
|
|
17
|
+
<button class="sqd-nav-toggle" aria-label="Toggle navigation" aria-expanded="false"
|
|
18
|
+
onclick="var open=document.querySelector('.sqd-nav-wrapper').classList.toggle('sqd-nav--open');this.setAttribute('aria-expanded',open)">
|
|
19
|
+
<span></span>
|
|
20
|
+
<span></span>
|
|
21
|
+
<span></span>
|
|
22
|
+
</button>
|
|
23
|
+
<div class="sqd-nav-wrapper">
|
|
24
|
+
<nav aria-label="Main">
|
|
25
|
+
<ul class="sqd-nav">
|
|
26
|
+
<li><%= link_to "Dashboard", root_path, class: current_page?(root_path) ? "active" : "", aria: { current: current_page?(root_path) ? "page" : nil } %></li>
|
|
27
|
+
<li><%= link_to "Queues", queues_path, class: current_page?(queues_path) ? "active" : "", aria: { current: current_page?(queues_path) ? "page" : nil } %></li>
|
|
28
|
+
<li><%= link_to "Jobs", jobs_path, class: current_page?(jobs_path) ? "active" : "", aria: { current: current_page?(jobs_path) ? "page" : nil } %></li>
|
|
29
|
+
<li><%= link_to "Failed", failed_jobs_path, class: current_page?(failed_jobs_path) ? "active" : "", aria: { current: current_page?(failed_jobs_path) ? "page" : nil } %></li>
|
|
30
|
+
<li><%= link_to "Recurring", recurring_tasks_path, class: current_page?(recurring_tasks_path) ? "active" : "", aria: { current: current_page?(recurring_tasks_path) ? "page" : nil } %></li>
|
|
31
|
+
<li><%= link_to "Processes", processes_path, class: current_page?(processes_path) ? "active" : "", aria: { current: current_page?(processes_path) ? "page" : nil } %></li>
|
|
32
|
+
</ul>
|
|
33
|
+
</nav>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
24
36
|
</header>
|
|
25
37
|
|
|
26
38
|
<main class="sqd-main">
|
|
27
39
|
<% if notice.present? %>
|
|
28
|
-
<div class="sqd-flash sqd-flash--notice"><%= notice %></div>
|
|
40
|
+
<div class="sqd-flash sqd-flash--notice" role="status"><%= notice %></div>
|
|
29
41
|
<% end %>
|
|
30
42
|
<% if alert.present? %>
|
|
31
|
-
<div class="sqd-flash sqd-flash--alert"><%= alert %></div>
|
|
43
|
+
<div class="sqd-flash sqd-flash--alert" role="alert"><%= alert %></div>
|
|
32
44
|
<% end %>
|
|
33
45
|
|
|
34
46
|
<%= yield %>
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
<div class="sqd-stat__value"><%= @stats[:queues] %></div>
|
|
26
26
|
<div class="sqd-stat__label">Queues</div>
|
|
27
27
|
<% end %>
|
|
28
|
+
<%= link_to recurring_tasks_path, class: "sqd-stat sqd-stat--recurring sqd-stat--link" do %>
|
|
29
|
+
<div class="sqd-stat__value"><%= @stats[:recurring] %></div>
|
|
30
|
+
<div class="sqd-stat__label">Recurring</div>
|
|
31
|
+
<% end %>
|
|
28
32
|
<%= link_to processes_path, class: "sqd-stat sqd-stat--processes sqd-stat--link" do %>
|
|
29
33
|
<div class="sqd-stat__value"><%= @stats[:processes] %></div>
|
|
30
34
|
<div class="sqd-stat__label">Processes</div>
|
|
@@ -41,6 +45,7 @@
|
|
|
41
45
|
<%= link_to "View scheduled jobs", jobs_path(status: "scheduled"), class: "sqd-btn sqd-btn--muted" %>
|
|
42
46
|
<%= link_to "View failed jobs", failed_jobs_path, class: "sqd-btn sqd-btn--muted" %>
|
|
43
47
|
<%= link_to "Manage queues", queues_path, class: "sqd-btn sqd-btn--muted" %>
|
|
48
|
+
<%= link_to "View recurring tasks", recurring_tasks_path, class: "sqd-btn sqd-btn--muted" %>
|
|
44
49
|
</div>
|
|
45
50
|
</div>
|
|
46
51
|
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
<table>
|
|
22
22
|
<thead>
|
|
23
23
|
<tr>
|
|
24
|
-
<th>Job Class</th>
|
|
25
|
-
<th>Queue</th>
|
|
26
|
-
<th>Error</th>
|
|
27
|
-
<th>Failed At</th>
|
|
28
|
-
<th></th>
|
|
24
|
+
<th scope="col">Job Class</th>
|
|
25
|
+
<th scope="col">Queue</th>
|
|
26
|
+
<th scope="col">Error</th>
|
|
27
|
+
<th scope="col">Failed At</th>
|
|
28
|
+
<th scope="col"><span class="sqd-sr-only">Actions</span></th>
|
|
29
29
|
</tr>
|
|
30
30
|
</thead>
|
|
31
31
|
<tbody>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<h1 class="sqd-page-title" style="margin-bottom: 1.5rem;">Jobs</h1>
|
|
2
2
|
|
|
3
|
-
<%= turbo_frame_tag "jobs-table" do %>
|
|
3
|
+
<%= turbo_frame_tag "jobs-table", data: { turbo_action: "advance" } do %>
|
|
4
4
|
<% discardable = SolidQueueWeb::JobsController::DISCARDABLE.include?(@status) %>
|
|
5
5
|
|
|
6
6
|
<div class="sqd-page-header">
|
|
7
7
|
<div class="sqd-filters">
|
|
8
|
-
<%= link_to "Ready", jobs_path(status: "ready", queue: @queue), class: @status == "ready" ? "active" : "" %>
|
|
9
|
-
<%= link_to "Scheduled", jobs_path(status: "scheduled", queue: @queue), class: @status == "scheduled" ? "active" : "" %>
|
|
10
|
-
<%= link_to "Running", jobs_path(status: "claimed", queue: @queue), class: @status == "claimed" ? "active" : "" %>
|
|
11
|
-
<%= link_to "Blocked", jobs_path(status: "blocked", queue: @queue), class: @status == "blocked" ? "active" : "" %>
|
|
12
|
-
<%= link_to "Failed", jobs_path(status: "failed", queue: @queue), class: @status == "failed" ? "active" : "" %>
|
|
8
|
+
<%= link_to "Ready", jobs_path(status: "ready", queue: @queue, q: @search), class: @status == "ready" ? "active" : "" %>
|
|
9
|
+
<%= link_to "Scheduled", jobs_path(status: "scheduled", queue: @queue, q: @search), class: @status == "scheduled" ? "active" : "" %>
|
|
10
|
+
<%= link_to "Running", jobs_path(status: "claimed", queue: @queue, q: @search), class: @status == "claimed" ? "active" : "" %>
|
|
11
|
+
<%= link_to "Blocked", jobs_path(status: "blocked", queue: @queue, q: @search), class: @status == "blocked" ? "active" : "" %>
|
|
12
|
+
<%= link_to "Failed", jobs_path(status: "failed", queue: @queue, q: @search), class: @status == "failed" ? "active" : "" %>
|
|
13
13
|
</div>
|
|
14
14
|
<% if discardable && @jobs.any? %>
|
|
15
15
|
<div class="sqd-actions">
|
|
@@ -22,6 +22,20 @@
|
|
|
22
22
|
<% end %>
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
|
+
<form class="sqd-search" action="<%= jobs_path %>" method="get" data-controller="search">
|
|
26
|
+
<input type="hidden" name="status" value="<%= @status %>">
|
|
27
|
+
<% if @queue.present? %>
|
|
28
|
+
<input type="hidden" name="queue" value="<%= @queue %>">
|
|
29
|
+
<% end %>
|
|
30
|
+
<input class="sqd-search__input" type="search" name="q" value="<%= @search %>"
|
|
31
|
+
placeholder="Filter by job class…" autocomplete="off" aria-label="Filter by job class"
|
|
32
|
+
data-action="input->search#filter">
|
|
33
|
+
<button type="submit" class="sqd-btn sqd-btn--muted">Search</button>
|
|
34
|
+
<% if @search.present? %>
|
|
35
|
+
<%= link_to "Clear", jobs_path(status: @status, queue: @queue), class: "sqd-btn sqd-btn--muted" %>
|
|
36
|
+
<% end %>
|
|
37
|
+
</form>
|
|
38
|
+
|
|
25
39
|
<div class="sqd-card" id="jobs-list">
|
|
26
40
|
<% if @jobs.empty? %>
|
|
27
41
|
<div class="sqd-empty">No <%= @status %> jobs.</div>
|
|
@@ -29,12 +43,12 @@
|
|
|
29
43
|
<table>
|
|
30
44
|
<thead>
|
|
31
45
|
<tr>
|
|
32
|
-
<th>Job Class</th>
|
|
33
|
-
<th>Queue</th>
|
|
34
|
-
<th>Priority</th>
|
|
35
|
-
<th>Scheduled At</th>
|
|
36
|
-
<th>Enqueued At</th>
|
|
37
|
-
<% if discardable %><th></th><% end %>
|
|
46
|
+
<th scope="col">Job Class</th>
|
|
47
|
+
<th scope="col">Queue</th>
|
|
48
|
+
<th scope="col">Priority</th>
|
|
49
|
+
<th scope="col">Scheduled At</th>
|
|
50
|
+
<th scope="col">Enqueued At</th>
|
|
51
|
+
<% if discardable %><th scope="col"><span class="sqd-sr-only">Actions</span></th><% end %>
|
|
38
52
|
</tr>
|
|
39
53
|
</thead>
|
|
40
54
|
<tbody>
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
<table>
|
|
8
8
|
<thead>
|
|
9
9
|
<tr>
|
|
10
|
-
<th>Kind</th>
|
|
11
|
-
<th>Name</th>
|
|
12
|
-
<th>PID</th>
|
|
13
|
-
<th>Host</th>
|
|
14
|
-
<th>Details</th>
|
|
15
|
-
<th>Last Heartbeat</th>
|
|
16
|
-
<th>Status</th>
|
|
10
|
+
<th scope="col">Kind</th>
|
|
11
|
+
<th scope="col">Name</th>
|
|
12
|
+
<th scope="col">PID</th>
|
|
13
|
+
<th scope="col">Host</th>
|
|
14
|
+
<th scope="col">Details</th>
|
|
15
|
+
<th scope="col">Last Heartbeat</th>
|
|
16
|
+
<th scope="col">Status</th>
|
|
17
17
|
</tr>
|
|
18
18
|
</thead>
|
|
19
19
|
<tbody>
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
<table>
|
|
8
8
|
<thead>
|
|
9
9
|
<tr>
|
|
10
|
-
<th>Name</th>
|
|
11
|
-
<th>Size</th>
|
|
12
|
-
<th>Latency</th>
|
|
13
|
-
<th>Status</th>
|
|
14
|
-
<th></th>
|
|
10
|
+
<th scope="col">Name</th>
|
|
11
|
+
<th scope="col">Size</th>
|
|
12
|
+
<th scope="col">Latency</th>
|
|
13
|
+
<th scope="col">Status</th>
|
|
14
|
+
<th scope="col"><span class="sqd-sr-only">Actions</span></th>
|
|
15
15
|
</tr>
|
|
16
16
|
</thead>
|
|
17
17
|
<tbody>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<h1 class="sqd-page-title">Recurring Tasks</h1>
|
|
2
|
+
|
|
3
|
+
<div class="sqd-card" style="margin-top: 1.5rem;">
|
|
4
|
+
<% if @recurring_tasks.empty? %>
|
|
5
|
+
<div class="sqd-empty">No recurring tasks configured.</div>
|
|
6
|
+
<% else %>
|
|
7
|
+
<table>
|
|
8
|
+
<thead>
|
|
9
|
+
<tr>
|
|
10
|
+
<th scope="col">Key</th>
|
|
11
|
+
<th scope="col">Schedule</th>
|
|
12
|
+
<th scope="col">Job / Command</th>
|
|
13
|
+
<th scope="col">Queue</th>
|
|
14
|
+
<th scope="col">Next Run</th>
|
|
15
|
+
<th scope="col">Last Run</th>
|
|
16
|
+
<th scope="col">Type</th>
|
|
17
|
+
</tr>
|
|
18
|
+
</thead>
|
|
19
|
+
<tbody>
|
|
20
|
+
<% @recurring_tasks.each do |task| %>
|
|
21
|
+
<tr>
|
|
22
|
+
<td class="sqd-mono"><%= task.key %></td>
|
|
23
|
+
<td class="sqd-mono"><%= task.schedule %></td>
|
|
24
|
+
<td>
|
|
25
|
+
<% if task.class_name.present? %>
|
|
26
|
+
<%= task.class_name %>
|
|
27
|
+
<% if task.arguments.present? %>
|
|
28
|
+
<div class="sqd-muted-text sqd-mono" style="font-size: 11px;">
|
|
29
|
+
<%= task.arguments.inspect %>
|
|
30
|
+
</div>
|
|
31
|
+
<% end %>
|
|
32
|
+
<% else %>
|
|
33
|
+
<span class="sqd-mono sqd-muted-text"><%= task.command %></span>
|
|
34
|
+
<% end %>
|
|
35
|
+
<% if task.description.present? %>
|
|
36
|
+
<div class="sqd-muted-text" style="font-size: 12px; margin-top: 0.2rem;">
|
|
37
|
+
<%= task.description %>
|
|
38
|
+
</div>
|
|
39
|
+
<% end %>
|
|
40
|
+
</td>
|
|
41
|
+
<td class="sqd-mono"><%= task.queue_name.presence || "default" %></td>
|
|
42
|
+
<td class="sqd-mono">
|
|
43
|
+
<%
|
|
44
|
+
next_run = begin
|
|
45
|
+
task.next_time.strftime("%Y-%m-%d %H:%M %Z")
|
|
46
|
+
rescue
|
|
47
|
+
nil
|
|
48
|
+
end
|
|
49
|
+
%>
|
|
50
|
+
<%= next_run || "—" %>
|
|
51
|
+
</td>
|
|
52
|
+
<td class="sqd-mono">
|
|
53
|
+
<% last_run = task.last_enqueued_time %>
|
|
54
|
+
<%= last_run ? last_run.strftime("%Y-%m-%d %H:%M %Z") : "—" %>
|
|
55
|
+
</td>
|
|
56
|
+
<td>
|
|
57
|
+
<% if task.static? %>
|
|
58
|
+
<span class="sqd-badge sqd-badge--static">Static</span>
|
|
59
|
+
<% else %>
|
|
60
|
+
<span class="sqd-badge sqd-badge--dynamic">Dynamic</span>
|
|
61
|
+
<% end %>
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
<% end %>
|
|
65
|
+
</tbody>
|
|
66
|
+
</table>
|
|
67
|
+
<% end %>
|
|
68
|
+
</div>
|
data/config/importmap.rb
ADDED
data/config/routes.rb
CHANGED
|
@@ -9,6 +9,19 @@ module SolidQueueWeb
|
|
|
9
9
|
|
|
10
10
|
config.i18n.load_path += Gem.find_files("pagy/locales/en.yml")
|
|
11
11
|
|
|
12
|
+
initializer "solid_queue_web.assets" do |app|
|
|
13
|
+
if app.config.respond_to?(:assets)
|
|
14
|
+
app.config.assets.paths << root.join("app/javascript")
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
initializer "solid_queue_web.importmap", before: "importmap" do |app|
|
|
19
|
+
if app.config.respond_to?(:importmap)
|
|
20
|
+
app.config.importmap.paths << root.join("config/importmap.rb")
|
|
21
|
+
app.config.importmap.cache_sweepers << root.join("app/javascript")
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
12
25
|
initializer "solid_queue_web.pagy" do
|
|
13
26
|
Pagy::OPTIONS[:limit] = 25
|
|
14
27
|
end
|
data/lib/solid_queue_web.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solid_queue_web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chuck Smith
|
|
@@ -65,6 +65,20 @@ dependencies:
|
|
|
65
65
|
- - ">="
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '2.0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: importmap-rails
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '1.2'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.2'
|
|
68
82
|
description: Mount SolidQueueWeb in any Rails app using Solid Queue to get a dashboard
|
|
69
83
|
for your queues, jobs by status, failed executions, and job actions (retry, discard)
|
|
70
84
|
— all without leaving your app.
|
|
@@ -84,7 +98,10 @@ files:
|
|
|
84
98
|
- app/controllers/solid_queue_web/jobs_controller.rb
|
|
85
99
|
- app/controllers/solid_queue_web/processes_controller.rb
|
|
86
100
|
- app/controllers/solid_queue_web/queues_controller.rb
|
|
101
|
+
- app/controllers/solid_queue_web/recurring_tasks_controller.rb
|
|
87
102
|
- app/helpers/solid_queue_web/application_helper.rb
|
|
103
|
+
- app/javascript/solid_queue_web/application.js
|
|
104
|
+
- app/javascript/solid_queue_web/search_controller.js
|
|
88
105
|
- app/jobs/solid_queue_web/application_job.rb
|
|
89
106
|
- app/models/solid_queue_web/application_record.rb
|
|
90
107
|
- app/views/layouts/solid_queue_web/application.html.erb
|
|
@@ -95,6 +112,8 @@ files:
|
|
|
95
112
|
- app/views/solid_queue_web/jobs/show.html.erb
|
|
96
113
|
- app/views/solid_queue_web/processes/index.html.erb
|
|
97
114
|
- app/views/solid_queue_web/queues/index.html.erb
|
|
115
|
+
- app/views/solid_queue_web/recurring_tasks/index.html.erb
|
|
116
|
+
- config/importmap.rb
|
|
98
117
|
- config/routes.rb
|
|
99
118
|
- lib/solid_queue_web.rb
|
|
100
119
|
- lib/solid_queue_web/engine.rb
|