pgbus 0.2.1 → 0.2.2
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/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 +50 -14
- data/app/views/pgbus/dashboard/_processes_table.html.erb +6 -6
- data/app/views/pgbus/dashboard/_queues_table.html.erb +8 -8
- data/app/views/pgbus/dashboard/_recent_failures.html.erb +6 -6
- data/app/views/pgbus/dashboard/_stats_cards.html.erb +9 -9
- data/app/views/pgbus/dashboard/show.html.erb +1 -1
- data/app/views/pgbus/dead_letter/_messages_table.html.erb +19 -19
- 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 +19 -19
- data/app/views/pgbus/jobs/_failed_table.html.erb +11 -11
- 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 +7 -7
- data/app/views/pgbus/processes/index.html.erb +1 -1
- data/app/views/pgbus/queues/_queues_list.html.erb +14 -14
- 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 +14 -14
- 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
|
+
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
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
---
|
|
2
|
+
es:
|
|
3
|
+
pgbus:
|
|
4
|
+
dashboard:
|
|
5
|
+
processes_table:
|
|
6
|
+
empty: No hay procesos en ejecución
|
|
7
|
+
headers:
|
|
8
|
+
host: Host
|
|
9
|
+
kind: Tipo
|
|
10
|
+
pid: PID
|
|
11
|
+
status: Estado
|
|
12
|
+
title: Procesos activos
|
|
13
|
+
queues_table:
|
|
14
|
+
empty: No se encontraron colas
|
|
15
|
+
headers:
|
|
16
|
+
depth: Profundidad
|
|
17
|
+
oldest: El más antiguo (s)
|
|
18
|
+
queue: Cola
|
|
19
|
+
total: Total
|
|
20
|
+
visible: Visible
|
|
21
|
+
title: Colas
|
|
22
|
+
view_all: Ver todo
|
|
23
|
+
recent_failures:
|
|
24
|
+
empty: Sin fallos
|
|
25
|
+
headers:
|
|
26
|
+
error: Error
|
|
27
|
+
queue: Cola
|
|
28
|
+
when: Cuándo
|
|
29
|
+
title: Fallos recientes
|
|
30
|
+
view_all: Ver todo
|
|
31
|
+
show:
|
|
32
|
+
title: Panel de control
|
|
33
|
+
stats_cards:
|
|
34
|
+
enqueued: Encolado
|
|
35
|
+
failed_dlq: Fallidos / DLQ
|
|
36
|
+
processes: Procesos
|
|
37
|
+
queues: Colas
|
|
38
|
+
recurring: Recurrente
|
|
39
|
+
throughput: Rendimiento
|
|
40
|
+
throughput_unit: msgs/s
|
|
41
|
+
view_tasks: Ver tareas
|
|
42
|
+
visible: visible
|
|
43
|
+
dead_letter:
|
|
44
|
+
index:
|
|
45
|
+
discard_all: Descartar todo
|
|
46
|
+
discard_all_confirm: "¿Descartar permanentemente todos los mensajes DLQ?"
|
|
47
|
+
retry_all: Reintentar todo
|
|
48
|
+
retry_all_confirm: "¿Reintentar todos los mensajes DLQ?"
|
|
49
|
+
title: Cola de mensajes muertos
|
|
50
|
+
messages_table:
|
|
51
|
+
arguments: Argumentos
|
|
52
|
+
discard: Descartar
|
|
53
|
+
discard_confirm: "¿Descartar permanentemente?"
|
|
54
|
+
empty: La cola de mensajes muertos está vacía
|
|
55
|
+
full_json_payload: Carga JSON completa
|
|
56
|
+
headers:
|
|
57
|
+
enqueued: Encolado
|
|
58
|
+
id: ID
|
|
59
|
+
job_class: Clase de trabajo
|
|
60
|
+
reads: Lecturas
|
|
61
|
+
source_queue: Cola de origen
|
|
62
|
+
headers_section: Encabezados
|
|
63
|
+
job_id: 'ID de trabajo:'
|
|
64
|
+
metadata: Metadatos
|
|
65
|
+
metadata_labels:
|
|
66
|
+
executions: 'Ejecuciones:'
|
|
67
|
+
last_read: 'Última lectura:'
|
|
68
|
+
priority: 'Prioridad:'
|
|
69
|
+
queue: 'Cola:'
|
|
70
|
+
visible_at: 'Visible en:'
|
|
71
|
+
retry: Reintentar
|
|
72
|
+
show:
|
|
73
|
+
back: Volver a DLQ
|
|
74
|
+
discard: Descartar
|
|
75
|
+
discard_confirm: "¿Descartar permanentemente?"
|
|
76
|
+
headers: Encabezados
|
|
77
|
+
labels:
|
|
78
|
+
enqueued_at: Encolado en
|
|
79
|
+
read_count: Conteo de lecturas
|
|
80
|
+
source_queue: Cola de origen
|
|
81
|
+
visibility_timeout: Tiempo de espera de visibilidad
|
|
82
|
+
not_found: Mensaje no encontrado
|
|
83
|
+
payload: Carga útil
|
|
84
|
+
retry: Reintentar
|
|
85
|
+
title: 'Mensaje DLQ #%{id}'
|
|
86
|
+
events:
|
|
87
|
+
index:
|
|
88
|
+
processed_empty: No se han procesado eventos aún
|
|
89
|
+
processed_headers:
|
|
90
|
+
event_id: ID del evento
|
|
91
|
+
handler: Manejador
|
|
92
|
+
processed_at: Procesado en
|
|
93
|
+
processed_title: Eventos procesados
|
|
94
|
+
subscribers_empty: No hay suscriptores registrados
|
|
95
|
+
subscribers_headers:
|
|
96
|
+
handler: Manejador
|
|
97
|
+
pattern: Patrón
|
|
98
|
+
queue: Cola
|
|
99
|
+
subscribers_title: Suscriptores registrados
|
|
100
|
+
title: Eventos
|
|
101
|
+
show:
|
|
102
|
+
back: Volver a eventos
|
|
103
|
+
labels:
|
|
104
|
+
event_id: ID del evento
|
|
105
|
+
handler: Manejador
|
|
106
|
+
processed_at: Procesado en
|
|
107
|
+
not_found: Evento no encontrado
|
|
108
|
+
title: Evento %{event_id}
|
|
109
|
+
helpers:
|
|
110
|
+
paused_badge: Pausado
|
|
111
|
+
queue_badge:
|
|
112
|
+
dlq: DLQ
|
|
113
|
+
queue: Cola
|
|
114
|
+
recurring_health:
|
|
115
|
+
active: Activo
|
|
116
|
+
pending: Pendiente
|
|
117
|
+
status_badge:
|
|
118
|
+
healthy: Saludable
|
|
119
|
+
stale: Obsoleto
|
|
120
|
+
insights:
|
|
121
|
+
show:
|
|
122
|
+
charts:
|
|
123
|
+
failed_to_load: Error al cargar datos del gráfico
|
|
124
|
+
no_data: Aún no hay datos
|
|
125
|
+
series_name: Trabajos/min
|
|
126
|
+
status_distribution: Distribución de estado
|
|
127
|
+
throughput: Rendimiento (trabajos/min)
|
|
128
|
+
description_html: Métricas de desempeño laboral para los últimos %{range}
|
|
129
|
+
slowest:
|
|
130
|
+
empty: Aún no hay estadísticas de trabajos
|
|
131
|
+
headers:
|
|
132
|
+
avg: Promedio
|
|
133
|
+
count: Conteo
|
|
134
|
+
job_class: Clase de trabajo
|
|
135
|
+
max: Máximo
|
|
136
|
+
title: Clases de Trabajo Más Lentas (duración promedio)
|
|
137
|
+
summary:
|
|
138
|
+
avg_duration: Duración Promedio
|
|
139
|
+
dead_lettered: Enviado a Dead Letter
|
|
140
|
+
failed: Fallado
|
|
141
|
+
max_duration: Duración Máxima
|
|
142
|
+
succeeded: Exitoso
|
|
143
|
+
total_jobs: Total de Trabajos
|
|
144
|
+
time_ranges:
|
|
145
|
+
1h: 1h
|
|
146
|
+
24h: 24h
|
|
147
|
+
30d: 30d
|
|
148
|
+
7d: 7d
|
|
149
|
+
title: Perspectivas
|
|
150
|
+
jobs:
|
|
151
|
+
enqueued_table:
|
|
152
|
+
arguments: Argumentos
|
|
153
|
+
empty: No hay trabajos en cola
|
|
154
|
+
full_json_payload: Carga JSON completa
|
|
155
|
+
headers:
|
|
156
|
+
enqueued: En cola
|
|
157
|
+
id: ID
|
|
158
|
+
job_class: Clase de Trabajo
|
|
159
|
+
queue: Cola
|
|
160
|
+
reads: Lecturas
|
|
161
|
+
headers_section: Encabezados
|
|
162
|
+
job_id: 'ID del Trabajo:'
|
|
163
|
+
metadata: Metadatos
|
|
164
|
+
metadata_labels:
|
|
165
|
+
last_read: 'Última lectura:'
|
|
166
|
+
locale: 'Configuración regional:'
|
|
167
|
+
priority: 'Prioridad:'
|
|
168
|
+
queue: 'Cola:'
|
|
169
|
+
scheduled: 'Programado:'
|
|
170
|
+
timezone: 'Zona horaria:'
|
|
171
|
+
visible_at: 'Visible en:'
|
|
172
|
+
title: Trabajos en Cola
|
|
173
|
+
failed_table:
|
|
174
|
+
discard: Descartar
|
|
175
|
+
discard_confirm: "¿Descartar este trabajo?"
|
|
176
|
+
empty: No hay trabajos fallidos
|
|
177
|
+
headers:
|
|
178
|
+
actions: Acciones
|
|
179
|
+
error: Error
|
|
180
|
+
failed: Fallado
|
|
181
|
+
id: ID
|
|
182
|
+
queue: Cola
|
|
183
|
+
retries: Reintentos
|
|
184
|
+
retry: Reintentar
|
|
185
|
+
title: Trabajos Fallidos
|
|
186
|
+
index:
|
|
187
|
+
discard_all: Descartar Todo
|
|
188
|
+
discard_all_confirm: "¿Descartar todos los trabajos fallidos?"
|
|
189
|
+
retry_all: Reintentar Todo
|
|
190
|
+
retry_all_confirm: "¿Reintentar todos los trabajos fallidos?"
|
|
191
|
+
title: Trabajos
|
|
192
|
+
show:
|
|
193
|
+
back: Volver a Trabajos
|
|
194
|
+
backtrace: Rastreo de pila
|
|
195
|
+
discard: Descartar
|
|
196
|
+
discard_confirm: "¿Descartar este trabajo permanentemente?"
|
|
197
|
+
error_message: Mensaje de error
|
|
198
|
+
labels:
|
|
199
|
+
error_class: Clase de error
|
|
200
|
+
failed_at: Falló en
|
|
201
|
+
queue: Cola
|
|
202
|
+
retry_count: Recuento de reintentos
|
|
203
|
+
not_found: Trabajo no encontrado
|
|
204
|
+
payload: Carga útil
|
|
205
|
+
retry: Reintentar
|
|
206
|
+
title: 'Trabajo fallido #%{id}'
|
|
207
|
+
layout:
|
|
208
|
+
brand: Pgbus
|
|
209
|
+
nav:
|
|
210
|
+
dashboard: Panel de control
|
|
211
|
+
dlq: DLQ
|
|
212
|
+
events: Eventos
|
|
213
|
+
insights: Perspectivas
|
|
214
|
+
jobs: Trabajos
|
|
215
|
+
locks: Bloqueos
|
|
216
|
+
outbox: Bandeja de salida
|
|
217
|
+
processes: Procesos
|
|
218
|
+
queues: Colas
|
|
219
|
+
recurring: Recurrente
|
|
220
|
+
title: Panel de Pgbus
|
|
221
|
+
toggle_dark_mode: Alternar modo oscuro
|
|
222
|
+
locks:
|
|
223
|
+
index:
|
|
224
|
+
description: Bloqueos de unicidad activos que impiden la ejecución duplicada del trabajo
|
|
225
|
+
empty: No hay bloqueos activos
|
|
226
|
+
executing: Ejecutando
|
|
227
|
+
headers:
|
|
228
|
+
age: Antigüedad
|
|
229
|
+
expires: Expira
|
|
230
|
+
job_class: Clase de trabajo
|
|
231
|
+
lock_key: Clave de bloqueo
|
|
232
|
+
owner: Propietario
|
|
233
|
+
state: Estado
|
|
234
|
+
queued: En cola
|
|
235
|
+
title: Bloqueos de trabajo
|
|
236
|
+
outbox:
|
|
237
|
+
index:
|
|
238
|
+
description: Entradas de bandeja de salida transaccional pendientes de publicación en PGMQ
|
|
239
|
+
empty: No hay entradas en la bandeja de salida
|
|
240
|
+
headers:
|
|
241
|
+
created: Creado
|
|
242
|
+
id: ID
|
|
243
|
+
payload: Carga útil
|
|
244
|
+
priority: Prioridad
|
|
245
|
+
queue_topic: Cola / Tema
|
|
246
|
+
status: Estado
|
|
247
|
+
pending: Pendiente
|
|
248
|
+
published: Publicado
|
|
249
|
+
stats:
|
|
250
|
+
no_age: "—"
|
|
251
|
+
oldest_age: "%{seconds}s"
|
|
252
|
+
oldest_unpublished: Más antiguo no publicado
|
|
253
|
+
total: Total
|
|
254
|
+
unpublished: No publicado
|
|
255
|
+
title: Bandeja de salida
|
|
256
|
+
processes:
|
|
257
|
+
index:
|
|
258
|
+
title: Procesos
|
|
259
|
+
processes_table:
|
|
260
|
+
empty: No hay procesos en ejecución
|
|
261
|
+
headers:
|
|
262
|
+
hostname: Nombre del host
|
|
263
|
+
kind: Tipo
|
|
264
|
+
last_heartbeat: Último latido
|
|
265
|
+
metadata: Metadatos
|
|
266
|
+
pid: PID
|
|
267
|
+
status: Estado
|
|
268
|
+
queues:
|
|
269
|
+
index:
|
|
270
|
+
title: Colas
|
|
271
|
+
queues_list:
|
|
272
|
+
empty: No se encontraron colas
|
|
273
|
+
headers:
|
|
274
|
+
actions: Acciones
|
|
275
|
+
depth: Profundidad
|
|
276
|
+
newest: Más nuevo (s)
|
|
277
|
+
oldest: Más antiguo (s)
|
|
278
|
+
queue: Cola
|
|
279
|
+
total_ever: Total acumulado
|
|
280
|
+
visible: Visible
|
|
281
|
+
pause: Pausar
|
|
282
|
+
pause_confirm: "¿Pausar el procesamiento de %{name}?"
|
|
283
|
+
paused: Pausado
|
|
284
|
+
purge: Purgar
|
|
285
|
+
purge_confirm: "¿Purgar todos los mensajes de %{name}?"
|
|
286
|
+
resume: Reanudar
|
|
287
|
+
show:
|
|
288
|
+
depth: 'Profundidad:'
|
|
289
|
+
empty: La cola está vacía
|
|
290
|
+
headers:
|
|
291
|
+
enqueued: Encolado
|
|
292
|
+
id: ID
|
|
293
|
+
payload: Carga útil
|
|
294
|
+
reads: Lecturas
|
|
295
|
+
vt: VT
|
|
296
|
+
purge_confirm: "¿Purgar todos los mensajes?"
|
|
297
|
+
purge_queue: Purgar cola
|
|
298
|
+
total: 'Total:'
|
|
299
|
+
visible: 'Visible:'
|
|
300
|
+
recurring_tasks:
|
|
301
|
+
index:
|
|
302
|
+
task_count:
|
|
303
|
+
one: Tarea %{count} configurada
|
|
304
|
+
other: Tareas %{count} configuradas
|
|
305
|
+
title: Tareas recurrentes
|
|
306
|
+
show:
|
|
307
|
+
back: Atrás
|
|
308
|
+
configuration: Configuración
|
|
309
|
+
default_queue: predeterminado
|
|
310
|
+
disable: Desactivar
|
|
311
|
+
disabled: Desactivado
|
|
312
|
+
enable: Activar
|
|
313
|
+
execution_headers:
|
|
314
|
+
enqueued_at: Encolado en
|
|
315
|
+
scheduled_for: Programado para
|
|
316
|
+
labels:
|
|
317
|
+
arguments: Argumentos
|
|
318
|
+
command: Comando
|
|
319
|
+
description: Descripción
|
|
320
|
+
job_class: Clase de trabajo
|
|
321
|
+
priority: Prioridad
|
|
322
|
+
queue: Cola
|
|
323
|
+
source: Fuente
|
|
324
|
+
next_run: Próxima ejecución
|
|
325
|
+
no_executions: Aún no se han registrado ejecuciones
|
|
326
|
+
recent_executions: Ejecuciones recientes
|
|
327
|
+
run_now: Ejecutar ahora
|
|
328
|
+
schedule: Programar
|
|
329
|
+
source_config: Archivo de configuración
|
|
330
|
+
source_dynamic: Dinámico
|
|
331
|
+
status: Estado
|
|
332
|
+
tasks_table:
|
|
333
|
+
default_queue: predeterminado
|
|
334
|
+
disable: Desactivar
|
|
335
|
+
disabled: Desactivado
|
|
336
|
+
empty_hint: Agregar tareas a config/recurring.yml
|
|
337
|
+
empty_title: No hay tareas recurrentes configuradas
|
|
338
|
+
enable: Activar
|
|
339
|
+
headers:
|
|
340
|
+
actions: Acciones
|
|
341
|
+
last_run: Última ejecución
|
|
342
|
+
next_run: Próxima ejecución
|
|
343
|
+
queue: Cola
|
|
344
|
+
schedule: Programar
|
|
345
|
+
status: Estado
|
|
346
|
+
task: Tarea
|
|
347
|
+
never: Nunca
|
|
348
|
+
run_now: Ejecutar ahora
|