pgbus 0.2.1 → 0.2.3
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/Rakefile +88 -25
- data/app/controllers/pgbus/api/insights_controller.rb +5 -4
- data/app/controllers/pgbus/application_controller.rb +40 -0
- data/app/controllers/pgbus/insights_controller.rb +3 -2
- data/app/controllers/pgbus/locale_controller.rb +15 -0
- data/app/helpers/pgbus/application_helper.rb +67 -7
- data/app/views/layouts/pgbus/application.html.erb +51 -16
- data/app/views/pgbus/dashboard/_processes_table.html.erb +7 -7
- data/app/views/pgbus/dashboard/_queues_table.html.erb +9 -9
- data/app/views/pgbus/dashboard/_recent_failures.html.erb +7 -7
- data/app/views/pgbus/dashboard/_stats_cards.html.erb +10 -10
- data/app/views/pgbus/dashboard/show.html.erb +1 -1
- data/app/views/pgbus/dead_letter/_messages_table.html.erb +20 -20
- data/app/views/pgbus/dead_letter/index.html.erb +5 -5
- data/app/views/pgbus/dead_letter/show.html.erb +12 -12
- data/app/views/pgbus/events/index.html.erb +11 -11
- data/app/views/pgbus/events/show.html.erb +6 -6
- data/app/views/pgbus/insights/show.html.erb +41 -21
- data/app/views/pgbus/jobs/_enqueued_table.html.erb +20 -20
- data/app/views/pgbus/jobs/_failed_table.html.erb +12 -12
- data/app/views/pgbus/jobs/index.html.erb +5 -5
- data/app/views/pgbus/jobs/show.html.erb +13 -13
- data/app/views/pgbus/locks/index.html.erb +11 -11
- data/app/views/pgbus/outbox/index.html.erb +15 -15
- data/app/views/pgbus/processes/_processes_table.html.erb +8 -8
- data/app/views/pgbus/processes/index.html.erb +1 -1
- data/app/views/pgbus/queues/_queues_list.html.erb +15 -15
- data/app/views/pgbus/queues/index.html.erb +1 -1
- data/app/views/pgbus/queues/show.html.erb +11 -11
- data/app/views/pgbus/recurring_tasks/_tasks_table.html.erb +15 -15
- data/app/views/pgbus/recurring_tasks/index.html.erb +2 -2
- data/app/views/pgbus/recurring_tasks/show.html.erb +21 -21
- data/config/i18n-tasks.yml +41 -0
- data/config/locales/da.yml +348 -0
- data/config/locales/de.yml +348 -0
- data/config/locales/en.yml +348 -0
- data/config/locales/es.yml +348 -0
- data/config/locales/fi.yml +348 -0
- data/config/locales/fr.yml +348 -0
- data/config/locales/it.yml +348 -0
- data/config/locales/ja.yml +348 -0
- data/config/locales/nb.yml +348 -0
- data/config/locales/nl.yml +348 -0
- data/config/locales/pt.yml +348 -0
- data/config/locales/sv.yml +348 -0
- data/config/routes.rb +2 -0
- data/lib/pgbus/configuration.rb +8 -2
- data/lib/pgbus/engine.rb +4 -0
- data/lib/pgbus/version.rb +1 -1
- metadata +15 -1
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
---
|
|
2
|
+
de:
|
|
3
|
+
pgbus:
|
|
4
|
+
dashboard:
|
|
5
|
+
processes_table:
|
|
6
|
+
empty: Keine Prozesse laufen
|
|
7
|
+
headers:
|
|
8
|
+
host: Host
|
|
9
|
+
kind: Art
|
|
10
|
+
pid: PID
|
|
11
|
+
status: Status
|
|
12
|
+
title: Aktive Prozesse
|
|
13
|
+
queues_table:
|
|
14
|
+
empty: Keine Warteschlangen gefunden
|
|
15
|
+
headers:
|
|
16
|
+
depth: Tiefe
|
|
17
|
+
oldest: Älteste (s)
|
|
18
|
+
queue: Warteschlange
|
|
19
|
+
total: Gesamt
|
|
20
|
+
visible: Sichtbar
|
|
21
|
+
title: Warteschlangen
|
|
22
|
+
view_all: Alle anzeigen
|
|
23
|
+
recent_failures:
|
|
24
|
+
empty: Keine Fehler
|
|
25
|
+
headers:
|
|
26
|
+
error: Fehler
|
|
27
|
+
queue: Warteschlange
|
|
28
|
+
when: Wann
|
|
29
|
+
title: Kürzliche Fehler
|
|
30
|
+
view_all: Alle anzeigen
|
|
31
|
+
show:
|
|
32
|
+
title: Dashboard
|
|
33
|
+
stats_cards:
|
|
34
|
+
enqueued: Eingereiht
|
|
35
|
+
failed_dlq: Fehlgeschlagen / DLQ
|
|
36
|
+
processes: Prozesse
|
|
37
|
+
queues: Warteschlangen
|
|
38
|
+
recurring: Wiederkehrend
|
|
39
|
+
throughput: Durchsatz
|
|
40
|
+
throughput_unit: Nachrichten/s
|
|
41
|
+
view_tasks: Aufgaben anzeigen
|
|
42
|
+
visible: sichtbar
|
|
43
|
+
dead_letter:
|
|
44
|
+
index:
|
|
45
|
+
discard_all: Alle verwerfen
|
|
46
|
+
discard_all_confirm: Alle DLQ-Nachrichten dauerhaft verwerfen?
|
|
47
|
+
retry_all: Alle erneut versuchen
|
|
48
|
+
retry_all_confirm: Alle DLQ-Nachrichten erneut versuchen?
|
|
49
|
+
title: Dead Letter Queue
|
|
50
|
+
messages_table:
|
|
51
|
+
arguments: Argumente
|
|
52
|
+
discard: Verwerfen
|
|
53
|
+
discard_confirm: Dauerhaft verwerfen?
|
|
54
|
+
empty: Dead Letter Queue ist leer
|
|
55
|
+
full_json_payload: Vollständige JSON-Nutzlast
|
|
56
|
+
headers:
|
|
57
|
+
enqueued: Eingereiht
|
|
58
|
+
id: ID
|
|
59
|
+
job_class: Job-Klasse
|
|
60
|
+
reads: Liest
|
|
61
|
+
source_queue: Quellwarteschlange
|
|
62
|
+
headers_section: Header
|
|
63
|
+
job_id: 'Job-ID:'
|
|
64
|
+
metadata: Metadaten
|
|
65
|
+
metadata_labels:
|
|
66
|
+
executions: 'Ausführungen:'
|
|
67
|
+
last_read: 'Letztes Lesen:'
|
|
68
|
+
priority: 'Priorität:'
|
|
69
|
+
queue: 'Warteschlange:'
|
|
70
|
+
visible_at: 'Sichtbar um:'
|
|
71
|
+
retry: Erneut versuchen
|
|
72
|
+
show:
|
|
73
|
+
back: Zurück zur DLQ
|
|
74
|
+
discard: Verwerfen
|
|
75
|
+
discard_confirm: Dauerhaft verwerfen?
|
|
76
|
+
headers: Header
|
|
77
|
+
labels:
|
|
78
|
+
enqueued_at: Eingereiht am
|
|
79
|
+
read_count: Anzahl der Lesevorgänge
|
|
80
|
+
source_queue: Quellwarteschlange
|
|
81
|
+
visibility_timeout: Sichtbarkeits-Timeout
|
|
82
|
+
not_found: Nachricht nicht gefunden
|
|
83
|
+
payload: Nutzlast
|
|
84
|
+
retry: Erneut versuchen
|
|
85
|
+
title: 'DLQ Nachricht #%{id}'
|
|
86
|
+
events:
|
|
87
|
+
index:
|
|
88
|
+
processed_empty: Noch keine Ereignisse verarbeitet
|
|
89
|
+
processed_headers:
|
|
90
|
+
event_id: Ereignis-ID
|
|
91
|
+
handler: Handler
|
|
92
|
+
processed_at: Verarbeitet am
|
|
93
|
+
processed_title: Verarbeitete Ereignisse
|
|
94
|
+
subscribers_empty: Keine Abonnenten registriert
|
|
95
|
+
subscribers_headers:
|
|
96
|
+
handler: Handler
|
|
97
|
+
pattern: Muster
|
|
98
|
+
queue: Warteschlange
|
|
99
|
+
subscribers_title: Registrierte Abonnenten
|
|
100
|
+
title: Ereignisse
|
|
101
|
+
show:
|
|
102
|
+
back: Zurück zu Ereignissen
|
|
103
|
+
labels:
|
|
104
|
+
event_id: Ereignis-ID
|
|
105
|
+
handler: Handler
|
|
106
|
+
processed_at: Verarbeitet am
|
|
107
|
+
not_found: Ereignis nicht gefunden
|
|
108
|
+
title: Ereignis %{event_id}
|
|
109
|
+
helpers:
|
|
110
|
+
paused_badge: Pausiert
|
|
111
|
+
queue_badge:
|
|
112
|
+
dlq: DLQ
|
|
113
|
+
queue: Warteschlange
|
|
114
|
+
recurring_health:
|
|
115
|
+
active: Aktiv
|
|
116
|
+
pending: Ausstehend
|
|
117
|
+
status_badge:
|
|
118
|
+
healthy: Gesund
|
|
119
|
+
stale: Veraltet
|
|
120
|
+
insights:
|
|
121
|
+
show:
|
|
122
|
+
charts:
|
|
123
|
+
failed_to_load: Fehler beim Laden der Diagrammdaten
|
|
124
|
+
no_data: Noch keine Daten
|
|
125
|
+
series_name: Aufträge/Min
|
|
126
|
+
status_distribution: Statusverteilung
|
|
127
|
+
throughput: Durchsatz (Aufträge/Min)
|
|
128
|
+
description_html: Leistungskennzahlen für die letzten %{range}
|
|
129
|
+
slowest:
|
|
130
|
+
empty: Noch keine Auftragsstatistiken
|
|
131
|
+
headers:
|
|
132
|
+
avg: Durchschnitt
|
|
133
|
+
count: Anzahl
|
|
134
|
+
job_class: Job-Klasse
|
|
135
|
+
max: Max
|
|
136
|
+
title: Langsamste Job-Klassen (durchschnittliche Dauer)
|
|
137
|
+
summary:
|
|
138
|
+
avg_duration: Durchschnittliche Dauer
|
|
139
|
+
dead_lettered: In Dead Letter verschoben
|
|
140
|
+
failed: Fehlgeschlagen
|
|
141
|
+
max_duration: Maximale Dauer
|
|
142
|
+
succeeded: Erfolgreich
|
|
143
|
+
total_jobs: Gesamtanzahl der Jobs
|
|
144
|
+
time_ranges:
|
|
145
|
+
1h: 1h
|
|
146
|
+
24h: 24h
|
|
147
|
+
30d: 30d
|
|
148
|
+
7d: 7d
|
|
149
|
+
title: Einblicke
|
|
150
|
+
jobs:
|
|
151
|
+
enqueued_table:
|
|
152
|
+
arguments: Argumente
|
|
153
|
+
empty: Keine eingereihten Jobs
|
|
154
|
+
full_json_payload: Vollständige JSON-Nutzlast
|
|
155
|
+
headers:
|
|
156
|
+
enqueued: Eingereiht
|
|
157
|
+
id: ID
|
|
158
|
+
job_class: Job-Klasse
|
|
159
|
+
queue: Warteschlange
|
|
160
|
+
reads: Lesevorgänge
|
|
161
|
+
headers_section: Header
|
|
162
|
+
job_id: 'Job-ID:'
|
|
163
|
+
metadata: Metadaten
|
|
164
|
+
metadata_labels:
|
|
165
|
+
last_read: 'Letzter Lesevorgang:'
|
|
166
|
+
locale: 'Sprache:'
|
|
167
|
+
priority: 'Priorität:'
|
|
168
|
+
queue: 'Warteschlange:'
|
|
169
|
+
scheduled: 'Geplant:'
|
|
170
|
+
timezone: 'Zeitzone:'
|
|
171
|
+
visible_at: 'Sichtbar ab:'
|
|
172
|
+
title: Eingereihte Jobs
|
|
173
|
+
failed_table:
|
|
174
|
+
discard: Verwerfen
|
|
175
|
+
discard_confirm: Diesen Job verwerfen?
|
|
176
|
+
empty: Keine fehlgeschlagenen Jobs
|
|
177
|
+
headers:
|
|
178
|
+
actions: Aktionen
|
|
179
|
+
error: Fehler
|
|
180
|
+
failed: Fehlgeschlagen
|
|
181
|
+
id: ID
|
|
182
|
+
queue: Warteschlange
|
|
183
|
+
retries: Wiederholungen
|
|
184
|
+
retry: Wiederholen
|
|
185
|
+
title: Fehlgeschlagene Jobs
|
|
186
|
+
index:
|
|
187
|
+
discard_all: Alle verwerfen
|
|
188
|
+
discard_all_confirm: Alle fehlgeschlagenen Jobs verwerfen?
|
|
189
|
+
retry_all: Alle wiederholen
|
|
190
|
+
retry_all_confirm: Alle fehlgeschlagenen Jobs wiederholen?
|
|
191
|
+
title: Jobs
|
|
192
|
+
show:
|
|
193
|
+
back: Zurück zu Jobs
|
|
194
|
+
backtrace: Stacktrace
|
|
195
|
+
discard: Verwerfen
|
|
196
|
+
discard_confirm: Diesen Auftrag dauerhaft verwerfen?
|
|
197
|
+
error_message: Fehlermeldung
|
|
198
|
+
labels:
|
|
199
|
+
error_class: Fehlerklasse
|
|
200
|
+
failed_at: Fehlgeschlagen bei
|
|
201
|
+
queue: Warteschlange
|
|
202
|
+
retry_count: Anzahl der Wiederholungen
|
|
203
|
+
not_found: Auftrag nicht gefunden
|
|
204
|
+
payload: Nutzlast
|
|
205
|
+
retry: Wiederholen
|
|
206
|
+
title: 'Fehlgeschlagener Auftrag #%{id}'
|
|
207
|
+
layout:
|
|
208
|
+
brand: Pgbus
|
|
209
|
+
nav:
|
|
210
|
+
dashboard: Dashboard
|
|
211
|
+
dlq: DLQ
|
|
212
|
+
events: Ereignisse
|
|
213
|
+
insights: Einblicke
|
|
214
|
+
jobs: Aufträge
|
|
215
|
+
locks: Sperren
|
|
216
|
+
outbox: Postausgang
|
|
217
|
+
processes: Prozesse
|
|
218
|
+
queues: Warteschlangen
|
|
219
|
+
recurring: Wiederkehrend
|
|
220
|
+
title: Pgbus Dashboard
|
|
221
|
+
toggle_dark_mode: Dunkelmodus umschalten
|
|
222
|
+
locks:
|
|
223
|
+
index:
|
|
224
|
+
description: Aktive Einzigartigkeitssperren verhindern doppelte Auftragserstellung
|
|
225
|
+
empty: Keine aktiven Sperren
|
|
226
|
+
executing: Ausführen
|
|
227
|
+
headers:
|
|
228
|
+
age: Alter
|
|
229
|
+
expires: Läuft ab
|
|
230
|
+
job_class: Auftragsklasse
|
|
231
|
+
lock_key: Sperrschlüssel
|
|
232
|
+
owner: Besitzer
|
|
233
|
+
state: Status
|
|
234
|
+
queued: In Warteschlange
|
|
235
|
+
title: Auftragssperren
|
|
236
|
+
outbox:
|
|
237
|
+
index:
|
|
238
|
+
description: Transaktionale Postausgangseinträge ausstehend zur Veröffentlichung an PGMQ
|
|
239
|
+
empty: Keine Postausgangseinträge
|
|
240
|
+
headers:
|
|
241
|
+
created: Erstellt
|
|
242
|
+
id: ID
|
|
243
|
+
payload: Nutzlast
|
|
244
|
+
priority: Priorität
|
|
245
|
+
queue_topic: Warteschlange / Thema
|
|
246
|
+
status: Status
|
|
247
|
+
pending: Ausstehend
|
|
248
|
+
published: Veröffentlicht
|
|
249
|
+
stats:
|
|
250
|
+
no_age: "—"
|
|
251
|
+
oldest_age: "%{seconds}s"
|
|
252
|
+
oldest_unpublished: Ältester unveröffentlichter
|
|
253
|
+
total: Gesamt
|
|
254
|
+
unpublished: Unveröffentlicht
|
|
255
|
+
title: Postausgang
|
|
256
|
+
processes:
|
|
257
|
+
index:
|
|
258
|
+
title: Prozesse
|
|
259
|
+
processes_table:
|
|
260
|
+
empty: Keine Prozesse laufen
|
|
261
|
+
headers:
|
|
262
|
+
hostname: Hostname
|
|
263
|
+
kind: Art
|
|
264
|
+
last_heartbeat: Letzter Heartbeat
|
|
265
|
+
metadata: Metadaten
|
|
266
|
+
pid: PID
|
|
267
|
+
status: Status
|
|
268
|
+
queues:
|
|
269
|
+
index:
|
|
270
|
+
title: Warteschlangen
|
|
271
|
+
queues_list:
|
|
272
|
+
empty: Keine Warteschlangen gefunden
|
|
273
|
+
headers:
|
|
274
|
+
actions: Aktionen
|
|
275
|
+
depth: Tiefe
|
|
276
|
+
newest: Neueste (s)
|
|
277
|
+
oldest: Älteste (s)
|
|
278
|
+
queue: Warteschlange
|
|
279
|
+
total_ever: Insgesamt jemals
|
|
280
|
+
visible: Sichtbar
|
|
281
|
+
pause: Pause
|
|
282
|
+
pause_confirm: Verarbeitung für %{name} pausieren?
|
|
283
|
+
paused: Pausiert
|
|
284
|
+
purge: Bereinigen
|
|
285
|
+
purge_confirm: Alle Nachrichten von %{name} löschen?
|
|
286
|
+
resume: Fortsetzen
|
|
287
|
+
show:
|
|
288
|
+
depth: 'Tiefe:'
|
|
289
|
+
empty: Warteschlange ist leer
|
|
290
|
+
headers:
|
|
291
|
+
enqueued: Eingereiht
|
|
292
|
+
id: ID
|
|
293
|
+
payload: Nutzlast
|
|
294
|
+
reads: Lesevorgänge
|
|
295
|
+
vt: VT
|
|
296
|
+
purge_confirm: Alle Nachrichten löschen?
|
|
297
|
+
purge_queue: Warteschlange bereinigen
|
|
298
|
+
total: 'Insgesamt:'
|
|
299
|
+
visible: 'Sichtbar:'
|
|
300
|
+
recurring_tasks:
|
|
301
|
+
index:
|
|
302
|
+
task_count:
|
|
303
|
+
one: "%{count} Aufgabe konfiguriert"
|
|
304
|
+
other: "%{count} Aufgaben konfiguriert"
|
|
305
|
+
title: Wiederkehrende Aufgaben
|
|
306
|
+
show:
|
|
307
|
+
back: Zurück
|
|
308
|
+
configuration: Konfiguration
|
|
309
|
+
default_queue: Standard
|
|
310
|
+
disable: Deaktivieren
|
|
311
|
+
disabled: Deaktiviert
|
|
312
|
+
enable: Aktivieren
|
|
313
|
+
execution_headers:
|
|
314
|
+
enqueued_at: Eingereiht am
|
|
315
|
+
scheduled_for: Geplant für
|
|
316
|
+
labels:
|
|
317
|
+
arguments: Argumente
|
|
318
|
+
command: Befehl
|
|
319
|
+
description: Beschreibung
|
|
320
|
+
job_class: Job-Klasse
|
|
321
|
+
priority: Priorität
|
|
322
|
+
queue: Warteschlange
|
|
323
|
+
source: Quelle
|
|
324
|
+
next_run: Nächster Lauf
|
|
325
|
+
no_executions: Noch keine Ausführungen aufgezeichnet
|
|
326
|
+
recent_executions: Letzte Ausführungen
|
|
327
|
+
run_now: Jetzt ausführen
|
|
328
|
+
schedule: Zeitplan
|
|
329
|
+
source_config: Konfigurationsdatei
|
|
330
|
+
source_dynamic: Dynamisch
|
|
331
|
+
status: Status
|
|
332
|
+
tasks_table:
|
|
333
|
+
default_queue: Standard
|
|
334
|
+
disable: Deaktivieren
|
|
335
|
+
disabled: Deaktiviert
|
|
336
|
+
empty_hint: Aufgaben zu config/recurring.yml hinzufügen
|
|
337
|
+
empty_title: Keine wiederkehrenden Aufgaben konfiguriert
|
|
338
|
+
enable: Aktivieren
|
|
339
|
+
headers:
|
|
340
|
+
actions: Aktionen
|
|
341
|
+
last_run: Letzter Lauf
|
|
342
|
+
next_run: Nächster Lauf
|
|
343
|
+
queue: Warteschlange
|
|
344
|
+
schedule: Zeitplan
|
|
345
|
+
status: Status
|
|
346
|
+
task: Aufgabe
|
|
347
|
+
never: Nie
|
|
348
|
+
run_now: Jetzt ausführen
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
---
|
|
2
|
+
en:
|
|
3
|
+
pgbus:
|
|
4
|
+
dashboard:
|
|
5
|
+
processes_table:
|
|
6
|
+
empty: No processes running
|
|
7
|
+
headers:
|
|
8
|
+
host: Host
|
|
9
|
+
kind: Kind
|
|
10
|
+
pid: PID
|
|
11
|
+
status: Status
|
|
12
|
+
title: Active Processes
|
|
13
|
+
queues_table:
|
|
14
|
+
empty: No queues found
|
|
15
|
+
headers:
|
|
16
|
+
depth: Depth
|
|
17
|
+
oldest: Oldest (s)
|
|
18
|
+
queue: Queue
|
|
19
|
+
total: Total
|
|
20
|
+
visible: Visible
|
|
21
|
+
title: Queues
|
|
22
|
+
view_all: View all
|
|
23
|
+
recent_failures:
|
|
24
|
+
empty: No failures
|
|
25
|
+
headers:
|
|
26
|
+
error: Error
|
|
27
|
+
queue: Queue
|
|
28
|
+
when: When
|
|
29
|
+
title: Recent Failures
|
|
30
|
+
view_all: View all
|
|
31
|
+
show:
|
|
32
|
+
title: Dashboard
|
|
33
|
+
stats_cards:
|
|
34
|
+
enqueued: Enqueued
|
|
35
|
+
failed_dlq: Failed / DLQ
|
|
36
|
+
processes: Processes
|
|
37
|
+
queues: Queues
|
|
38
|
+
recurring: Recurring
|
|
39
|
+
throughput: Throughput
|
|
40
|
+
throughput_unit: msgs/s
|
|
41
|
+
view_tasks: View tasks
|
|
42
|
+
visible: visible
|
|
43
|
+
dead_letter:
|
|
44
|
+
index:
|
|
45
|
+
discard_all: Discard All
|
|
46
|
+
discard_all_confirm: Permanently discard all DLQ messages?
|
|
47
|
+
retry_all: Retry All
|
|
48
|
+
retry_all_confirm: Retry all DLQ messages?
|
|
49
|
+
title: Dead Letter Queue
|
|
50
|
+
messages_table:
|
|
51
|
+
arguments: Arguments
|
|
52
|
+
discard: Discard
|
|
53
|
+
discard_confirm: Permanently discard?
|
|
54
|
+
empty: Dead letter queue is empty
|
|
55
|
+
full_json_payload: Full JSON payload
|
|
56
|
+
headers:
|
|
57
|
+
enqueued: Enqueued
|
|
58
|
+
id: ID
|
|
59
|
+
job_class: Job Class
|
|
60
|
+
reads: Reads
|
|
61
|
+
source_queue: Source Queue
|
|
62
|
+
headers_section: Headers
|
|
63
|
+
job_id: 'Job ID:'
|
|
64
|
+
metadata: Metadata
|
|
65
|
+
metadata_labels:
|
|
66
|
+
executions: 'Executions:'
|
|
67
|
+
last_read: 'Last read:'
|
|
68
|
+
priority: 'Priority:'
|
|
69
|
+
queue: 'Queue:'
|
|
70
|
+
visible_at: 'Visible at:'
|
|
71
|
+
retry: Retry
|
|
72
|
+
show:
|
|
73
|
+
back: Back to DLQ
|
|
74
|
+
discard: Discard
|
|
75
|
+
discard_confirm: Permanently discard?
|
|
76
|
+
headers: Headers
|
|
77
|
+
labels:
|
|
78
|
+
enqueued_at: Enqueued At
|
|
79
|
+
read_count: Read Count
|
|
80
|
+
source_queue: Source Queue
|
|
81
|
+
visibility_timeout: Visibility Timeout
|
|
82
|
+
not_found: Message not found
|
|
83
|
+
payload: Payload
|
|
84
|
+
retry: Retry
|
|
85
|
+
title: 'DLQ Message #%{id}'
|
|
86
|
+
events:
|
|
87
|
+
index:
|
|
88
|
+
processed_empty: No events processed yet
|
|
89
|
+
processed_headers:
|
|
90
|
+
event_id: Event ID
|
|
91
|
+
handler: Handler
|
|
92
|
+
processed_at: Processed At
|
|
93
|
+
processed_title: Processed Events
|
|
94
|
+
subscribers_empty: No subscribers registered
|
|
95
|
+
subscribers_headers:
|
|
96
|
+
handler: Handler
|
|
97
|
+
pattern: Pattern
|
|
98
|
+
queue: Queue
|
|
99
|
+
subscribers_title: Registered Subscribers
|
|
100
|
+
title: Events
|
|
101
|
+
show:
|
|
102
|
+
back: Back to Events
|
|
103
|
+
labels:
|
|
104
|
+
event_id: Event ID
|
|
105
|
+
handler: Handler
|
|
106
|
+
processed_at: Processed At
|
|
107
|
+
not_found: Event not found
|
|
108
|
+
title: Event %{event_id}
|
|
109
|
+
helpers:
|
|
110
|
+
paused_badge: Paused
|
|
111
|
+
queue_badge:
|
|
112
|
+
dlq: DLQ
|
|
113
|
+
queue: Queue
|
|
114
|
+
recurring_health:
|
|
115
|
+
active: Active
|
|
116
|
+
pending: Pending
|
|
117
|
+
status_badge:
|
|
118
|
+
healthy: Healthy
|
|
119
|
+
stale: Stale
|
|
120
|
+
insights:
|
|
121
|
+
show:
|
|
122
|
+
charts:
|
|
123
|
+
failed_to_load: Failed to load chart data
|
|
124
|
+
no_data: No data yet
|
|
125
|
+
series_name: Jobs/min
|
|
126
|
+
status_distribution: Status Distribution
|
|
127
|
+
throughput: Throughput (jobs/min)
|
|
128
|
+
description_html: Job performance metrics for the last %{range}
|
|
129
|
+
slowest:
|
|
130
|
+
empty: No job stats yet
|
|
131
|
+
headers:
|
|
132
|
+
avg: Avg
|
|
133
|
+
count: Count
|
|
134
|
+
job_class: Job Class
|
|
135
|
+
max: Max
|
|
136
|
+
title: Slowest Job Classes (avg duration)
|
|
137
|
+
summary:
|
|
138
|
+
avg_duration: Avg Duration
|
|
139
|
+
dead_lettered: Dead Lettered
|
|
140
|
+
failed: Failed
|
|
141
|
+
max_duration: Max Duration
|
|
142
|
+
succeeded: Succeeded
|
|
143
|
+
total_jobs: Total Jobs
|
|
144
|
+
time_ranges:
|
|
145
|
+
1h: 1h
|
|
146
|
+
24h: 24h
|
|
147
|
+
30d: 30d
|
|
148
|
+
7d: 7d
|
|
149
|
+
title: Insights
|
|
150
|
+
jobs:
|
|
151
|
+
enqueued_table:
|
|
152
|
+
arguments: Arguments
|
|
153
|
+
empty: No enqueued jobs
|
|
154
|
+
full_json_payload: Full JSON payload
|
|
155
|
+
headers:
|
|
156
|
+
enqueued: Enqueued
|
|
157
|
+
id: ID
|
|
158
|
+
job_class: Job Class
|
|
159
|
+
queue: Queue
|
|
160
|
+
reads: Reads
|
|
161
|
+
headers_section: Headers
|
|
162
|
+
job_id: 'Job ID:'
|
|
163
|
+
metadata: Metadata
|
|
164
|
+
metadata_labels:
|
|
165
|
+
last_read: 'Last read:'
|
|
166
|
+
locale: 'Locale:'
|
|
167
|
+
priority: 'Priority:'
|
|
168
|
+
queue: 'Queue:'
|
|
169
|
+
scheduled: 'Scheduled:'
|
|
170
|
+
timezone: 'Timezone:'
|
|
171
|
+
visible_at: 'Visible at:'
|
|
172
|
+
title: Enqueued Jobs
|
|
173
|
+
failed_table:
|
|
174
|
+
discard: Discard
|
|
175
|
+
discard_confirm: Discard this job?
|
|
176
|
+
empty: No failed jobs
|
|
177
|
+
headers:
|
|
178
|
+
actions: Actions
|
|
179
|
+
error: Error
|
|
180
|
+
failed: Failed
|
|
181
|
+
id: ID
|
|
182
|
+
queue: Queue
|
|
183
|
+
retries: Retries
|
|
184
|
+
retry: Retry
|
|
185
|
+
title: Failed Jobs
|
|
186
|
+
index:
|
|
187
|
+
discard_all: Discard All
|
|
188
|
+
discard_all_confirm: Discard all failed jobs?
|
|
189
|
+
retry_all: Retry All
|
|
190
|
+
retry_all_confirm: Retry all failed jobs?
|
|
191
|
+
title: Jobs
|
|
192
|
+
show:
|
|
193
|
+
back: Back to Jobs
|
|
194
|
+
backtrace: Backtrace
|
|
195
|
+
discard: Discard
|
|
196
|
+
discard_confirm: Discard this job permanently?
|
|
197
|
+
error_message: Error Message
|
|
198
|
+
labels:
|
|
199
|
+
error_class: Error Class
|
|
200
|
+
failed_at: Failed At
|
|
201
|
+
queue: Queue
|
|
202
|
+
retry_count: Retry Count
|
|
203
|
+
not_found: Job not found
|
|
204
|
+
payload: Payload
|
|
205
|
+
retry: Retry
|
|
206
|
+
title: 'Failed Job #%{id}'
|
|
207
|
+
layout:
|
|
208
|
+
brand: Pgbus
|
|
209
|
+
nav:
|
|
210
|
+
dashboard: Dashboard
|
|
211
|
+
dlq: DLQ
|
|
212
|
+
events: Events
|
|
213
|
+
insights: Insights
|
|
214
|
+
jobs: Jobs
|
|
215
|
+
locks: Locks
|
|
216
|
+
outbox: Outbox
|
|
217
|
+
processes: Processes
|
|
218
|
+
queues: Queues
|
|
219
|
+
recurring: Recurring
|
|
220
|
+
title: Pgbus Dashboard
|
|
221
|
+
toggle_dark_mode: Toggle dark mode
|
|
222
|
+
locks:
|
|
223
|
+
index:
|
|
224
|
+
description: Active uniqueness locks preventing duplicate job execution
|
|
225
|
+
empty: No active locks
|
|
226
|
+
executing: Executing
|
|
227
|
+
headers:
|
|
228
|
+
age: Age
|
|
229
|
+
expires: Expires
|
|
230
|
+
job_class: Job Class
|
|
231
|
+
lock_key: Lock Key
|
|
232
|
+
owner: Owner
|
|
233
|
+
state: State
|
|
234
|
+
queued: Queued
|
|
235
|
+
title: Job Locks
|
|
236
|
+
outbox:
|
|
237
|
+
index:
|
|
238
|
+
description: Transactional outbox entries pending publication to PGMQ
|
|
239
|
+
empty: No outbox entries
|
|
240
|
+
headers:
|
|
241
|
+
created: Created
|
|
242
|
+
id: ID
|
|
243
|
+
payload: Payload
|
|
244
|
+
priority: Priority
|
|
245
|
+
queue_topic: Queue / Topic
|
|
246
|
+
status: Status
|
|
247
|
+
pending: Pending
|
|
248
|
+
published: Published
|
|
249
|
+
stats:
|
|
250
|
+
no_age: "—"
|
|
251
|
+
oldest_age: "%{seconds}s"
|
|
252
|
+
oldest_unpublished: Oldest Unpublished
|
|
253
|
+
total: Total
|
|
254
|
+
unpublished: Unpublished
|
|
255
|
+
title: Outbox
|
|
256
|
+
processes:
|
|
257
|
+
index:
|
|
258
|
+
title: Processes
|
|
259
|
+
processes_table:
|
|
260
|
+
empty: No processes running
|
|
261
|
+
headers:
|
|
262
|
+
hostname: Hostname
|
|
263
|
+
kind: Kind
|
|
264
|
+
last_heartbeat: Last Heartbeat
|
|
265
|
+
metadata: Metadata
|
|
266
|
+
pid: PID
|
|
267
|
+
status: Status
|
|
268
|
+
queues:
|
|
269
|
+
index:
|
|
270
|
+
title: Queues
|
|
271
|
+
queues_list:
|
|
272
|
+
empty: No queues found
|
|
273
|
+
headers:
|
|
274
|
+
actions: Actions
|
|
275
|
+
depth: Depth
|
|
276
|
+
newest: Newest (s)
|
|
277
|
+
oldest: Oldest (s)
|
|
278
|
+
queue: Queue
|
|
279
|
+
total_ever: Total Ever
|
|
280
|
+
visible: Visible
|
|
281
|
+
pause: Pause
|
|
282
|
+
pause_confirm: Pause processing for %{name}?
|
|
283
|
+
paused: Paused
|
|
284
|
+
purge: Purge
|
|
285
|
+
purge_confirm: Purge all messages from %{name}?
|
|
286
|
+
resume: Resume
|
|
287
|
+
show:
|
|
288
|
+
depth: 'Depth:'
|
|
289
|
+
empty: Queue is empty
|
|
290
|
+
headers:
|
|
291
|
+
enqueued: Enqueued
|
|
292
|
+
id: ID
|
|
293
|
+
payload: Payload
|
|
294
|
+
reads: Reads
|
|
295
|
+
vt: VT
|
|
296
|
+
purge_confirm: Purge all messages?
|
|
297
|
+
purge_queue: Purge Queue
|
|
298
|
+
total: 'Total:'
|
|
299
|
+
visible: 'Visible:'
|
|
300
|
+
recurring_tasks:
|
|
301
|
+
index:
|
|
302
|
+
task_count:
|
|
303
|
+
one: "%{count} task configured"
|
|
304
|
+
other: "%{count} tasks configured"
|
|
305
|
+
title: Recurring Tasks
|
|
306
|
+
show:
|
|
307
|
+
back: Back
|
|
308
|
+
configuration: Configuration
|
|
309
|
+
default_queue: default
|
|
310
|
+
disable: Disable
|
|
311
|
+
disabled: Disabled
|
|
312
|
+
enable: Enable
|
|
313
|
+
execution_headers:
|
|
314
|
+
enqueued_at: Enqueued At
|
|
315
|
+
scheduled_for: Scheduled For
|
|
316
|
+
labels:
|
|
317
|
+
arguments: Arguments
|
|
318
|
+
command: Command
|
|
319
|
+
description: Description
|
|
320
|
+
job_class: Job Class
|
|
321
|
+
priority: Priority
|
|
322
|
+
queue: Queue
|
|
323
|
+
source: Source
|
|
324
|
+
next_run: Next Run
|
|
325
|
+
no_executions: No executions recorded yet
|
|
326
|
+
recent_executions: Recent Executions
|
|
327
|
+
run_now: Run Now
|
|
328
|
+
schedule: Schedule
|
|
329
|
+
source_config: Config file
|
|
330
|
+
source_dynamic: Dynamic
|
|
331
|
+
status: Status
|
|
332
|
+
tasks_table:
|
|
333
|
+
default_queue: default
|
|
334
|
+
disable: Disable
|
|
335
|
+
disabled: Disabled
|
|
336
|
+
empty_hint: Add tasks to config/recurring.yml
|
|
337
|
+
empty_title: No recurring tasks configured
|
|
338
|
+
enable: Enable
|
|
339
|
+
headers:
|
|
340
|
+
actions: Actions
|
|
341
|
+
last_run: Last Run
|
|
342
|
+
next_run: Next Run
|
|
343
|
+
queue: Queue
|
|
344
|
+
schedule: Schedule
|
|
345
|
+
status: Status
|
|
346
|
+
task: Task
|
|
347
|
+
never: Never
|
|
348
|
+
run_now: Run Now
|