pgbus 0.8.4 → 0.9.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/app/controllers/pgbus/batches_controller.rb +15 -0
- data/app/helpers/pgbus/application_helper.rb +12 -0
- data/app/views/layouts/pgbus/application.html.erb +2 -0
- data/app/views/pgbus/batches/_batches_table.html.erb +53 -0
- data/app/views/pgbus/batches/index.html.erb +8 -0
- data/app/views/pgbus/batches/show.html.erb +90 -0
- data/config/locales/da.yml +34 -0
- data/config/locales/de.yml +34 -0
- data/config/locales/en.yml +34 -0
- data/config/locales/es.yml +34 -0
- data/config/locales/fi.yml +34 -0
- data/config/locales/fr.yml +34 -0
- data/config/locales/it.yml +34 -0
- data/config/locales/ja.yml +34 -0
- data/config/locales/nb.yml +34 -0
- data/config/locales/nl.yml +34 -0
- data/config/locales/pt.yml +34 -0
- data/config/locales/sv.yml +34 -0
- data/config/routes.rb +1 -0
- data/lib/pgbus/client.rb +102 -4
- data/lib/pgbus/configuration.rb +25 -0
- data/lib/pgbus/process/supervisor.rb +2 -1
- data/lib/pgbus/process/worker.rb +38 -1
- data/lib/pgbus/serializer.rb +1 -1
- data/lib/pgbus/version.rb +1 -1
- data/lib/pgbus/web/data_source.rb +96 -0
- data/lib/tasks/pgbus_queues.rake +54 -0
- metadata +8 -3
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pgbus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mikael Henriksson
|
|
@@ -63,14 +63,14 @@ dependencies:
|
|
|
63
63
|
requirements:
|
|
64
64
|
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version:
|
|
66
|
+
version: 0.7.0
|
|
67
67
|
type: :runtime
|
|
68
68
|
prerelease: false
|
|
69
69
|
version_requirements: !ruby/object:Gem::Requirement
|
|
70
70
|
requirements:
|
|
71
71
|
- - "~>"
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version:
|
|
73
|
+
version: 0.7.0
|
|
74
74
|
- !ruby/object:Gem::Dependency
|
|
75
75
|
name: railties
|
|
76
76
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -126,6 +126,7 @@ files:
|
|
|
126
126
|
- app/controllers/pgbus/api/metrics_controller.rb
|
|
127
127
|
- app/controllers/pgbus/api/stats_controller.rb
|
|
128
128
|
- app/controllers/pgbus/application_controller.rb
|
|
129
|
+
- app/controllers/pgbus/batches_controller.rb
|
|
129
130
|
- app/controllers/pgbus/dashboard_controller.rb
|
|
130
131
|
- app/controllers/pgbus/dead_letter_controller.rb
|
|
131
132
|
- app/controllers/pgbus/events_controller.rb
|
|
@@ -161,6 +162,9 @@ files:
|
|
|
161
162
|
- app/models/pgbus/stream_stat.rb
|
|
162
163
|
- app/models/pgbus/uniqueness_key.rb
|
|
163
164
|
- app/views/layouts/pgbus/application.html.erb
|
|
165
|
+
- app/views/pgbus/batches/_batches_table.html.erb
|
|
166
|
+
- app/views/pgbus/batches/index.html.erb
|
|
167
|
+
- app/views/pgbus/batches/show.html.erb
|
|
164
168
|
- app/views/pgbus/dashboard/_processes_table.html.erb
|
|
165
169
|
- app/views/pgbus/dashboard/_queue_health.html.erb
|
|
166
170
|
- app/views/pgbus/dashboard/_queues_table.html.erb
|
|
@@ -343,6 +347,7 @@ files:
|
|
|
343
347
|
- lib/puma/plugin/pgbus_streams.rb
|
|
344
348
|
- lib/tasks/pgbus_autovacuum.rake
|
|
345
349
|
- lib/tasks/pgbus_pgmq.rake
|
|
350
|
+
- lib/tasks/pgbus_queues.rake
|
|
346
351
|
- lib/tasks/pgbus_streams.rake
|
|
347
352
|
homepage: https://github.com/mhenrixon/pgbus
|
|
348
353
|
licenses:
|