rabbitek 0.8.0 → 0.8.1
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/Gemfile.lock +5 -3
- data/lib/rabbitek.rb +3 -2
- data/lib/rabbitek/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c5f09ef286a1f37a026cf370fce7fb800b68da92abff95ee56f1ef5408fd6e3
|
|
4
|
+
data.tar.gz: da008b7f6a410ee65d63b879229df6418455ef688d3b8b7a0e4deb1ec685b985
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c32c7beb1a29a53a25b8a3e936126c6c54b070d5a62b81dd07e0103d07a5e541669083fbd7a28d9816cdcf7cff939d988b95d47690f3a57c00b00308b3c07c6
|
|
7
|
+
data.tar.gz: 0e32bceb540529fd08e6647f8e5dd71bd251f26f147c3c5e89fc5ec71c3f4ec2490fe0172e9fe98719d34c3c5b6724809461c42c80771949c6dbd41198ab847d
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rabbitek (0.8.
|
|
4
|
+
rabbitek (0.8.1)
|
|
5
5
|
activesupport (> 3.0)
|
|
6
6
|
bunny (~> 2.11.0)
|
|
7
7
|
oj (> 2.0.0)
|
|
@@ -56,6 +56,7 @@ GEM
|
|
|
56
56
|
amq-protocol (2.3.2)
|
|
57
57
|
arel (9.0.0)
|
|
58
58
|
ast (2.4.0)
|
|
59
|
+
bigdecimal (2.0.0)
|
|
59
60
|
builder (3.2.4)
|
|
60
61
|
bunny (2.11.0)
|
|
61
62
|
amq-protocol (~> 2.3.0)
|
|
@@ -85,7 +86,8 @@ GEM
|
|
|
85
86
|
nio4r (2.5.2)
|
|
86
87
|
nokogiri (1.10.7)
|
|
87
88
|
mini_portile2 (~> 2.4.0)
|
|
88
|
-
oj (3.10.
|
|
89
|
+
oj (3.10.9)
|
|
90
|
+
bigdecimal (~> 2.0)
|
|
89
91
|
opentracing (0.5.0)
|
|
90
92
|
parallel (1.12.1)
|
|
91
93
|
parser (2.5.1.2)
|
|
@@ -161,7 +163,7 @@ GEM
|
|
|
161
163
|
websocket-driver (0.7.1)
|
|
162
164
|
websocket-extensions (>= 0.1.0)
|
|
163
165
|
websocket-extensions (0.1.4)
|
|
164
|
-
yabeda (0.
|
|
166
|
+
yabeda (0.7.0)
|
|
165
167
|
concurrent-ruby
|
|
166
168
|
dry-initializer
|
|
167
169
|
|
data/lib/rabbitek.rb
CHANGED
|
@@ -58,11 +58,12 @@ end
|
|
|
58
58
|
|
|
59
59
|
Yabeda.configure do
|
|
60
60
|
group :rabbitek do
|
|
61
|
-
counter :processed_messages_count, comment: 'Total number of all messages'
|
|
62
|
-
counter :errored_messages_count, comment: 'Total number of errored messages'
|
|
61
|
+
counter :processed_messages_count, comment: 'Total number of all messages', tags: %i[consumer]
|
|
62
|
+
counter :errored_messages_count, comment: 'Total number of errored messages', tags: %i[consumer]
|
|
63
63
|
histogram :processed_messages_runtime do
|
|
64
64
|
comment 'How long it takes to process message'
|
|
65
65
|
unit :seconds
|
|
66
|
+
tags %i[consumer]
|
|
66
67
|
buckets [0.1, 0.5, 1, 5, 10, 30, 60]
|
|
67
68
|
end
|
|
68
69
|
end
|
data/lib/rabbitek/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rabbitek
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boostcom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|