sidekiq-queues-exporter 0.1.1 → 0.1.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/Gemfile.lock +1 -1
- data/LICENSE.txt +6 -6
- data/lib/sidekiq/queues/exporter/version.rb +1 -1
- data/lib/sidekiq/queues/templates/queues.erb +1 -2
- data/sidekiq-queues-exporter.gemspec +2 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb4a5e0a9d61324c5eb5b35c867b47c4bb5659b9f62d0c92e5158a7cd3498078
|
4
|
+
data.tar.gz: b6a710a59d1388e530df18fdbed995c52cc040c197ec3f7ec21ea280be52d78e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0573afe86cef4b9f4e1f29101650b994839528ff3e4cc64d74533ab01ce567c5764ad0057c53d4547b7750f91c72591e015af98760dd020d2937377647b979d
|
7
|
+
data.tar.gz: 8bfd3b89f3323df5bdd67b8456dc1838b116d4d86e037b812ac6acc38c28715fa307397d9831c36cc726480556fd5c39b8a8abe509887d9cdf3817759e8f8adb
|
data/Gemfile.lock
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
|
1
|
+
MIT License
|
2
2
|
|
3
|
-
Copyright (c) 2020
|
3
|
+
Copyright (c) 2020 Jiraffe
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
9
|
copies of the Software, and to permit persons to whom the Software is
|
10
10
|
furnished to do so, subject to the following conditions:
|
11
11
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
14
|
|
15
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,5 +1,4 @@
|
|
1
1
|
# HELP sidekiq_queue The number of queue size
|
2
2
|
# TYPE sidekiq_queue gauge
|
3
|
-
<% @queues.each do |queue| %>
|
4
|
-
sidekiq_queue <%= format('{queue_name="%<queue_name>s"} %<queue_size>d', queue) %>
|
3
|
+
<% @queues.each do |queue| %>sidekiq_queue <%= format('{queue_name="%<queue_name>s"} %<queue_size>d', queue) %>
|
5
4
|
<% end %>
|
@@ -5,8 +5,7 @@ require 'sidekiq/queues/exporter/version'
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'sidekiq-queues-exporter'
|
7
7
|
spec.version = Sidekiq::Queues::Exporter::VERSION
|
8
|
-
spec.authors = ['
|
9
|
-
spec.email = ['umemoto0722@gmail.com']
|
8
|
+
spec.authors = ['jiraffeinc']
|
10
9
|
|
11
10
|
spec.summary = 'Prometheus exporter for the Sidekiq queues'
|
12
11
|
spec.description = 'Prometheus exporter for the Sidekiq queues'
|
@@ -19,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
19
18
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
20
19
|
|
21
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
22
|
-
|
21
|
+
spec.metadata['source_code_uri'] = 'https://github.com/jiraffeinc/sidekiq-queues-exporter'
|
23
22
|
# spec.metadata['changelog_uri'] = 'TODO: Put your gem\'s CHANGELOG.md URL here.'
|
24
23
|
else
|
25
24
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq-queues-exporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- jiraffeinc
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -95,8 +95,7 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '1.1'
|
97
97
|
description: Prometheus exporter for the Sidekiq queues
|
98
|
-
email:
|
99
|
-
- umemoto0722@gmail.com
|
98
|
+
email:
|
100
99
|
executables: []
|
101
100
|
extensions: []
|
102
101
|
extra_rdoc_files: []
|
@@ -123,6 +122,7 @@ licenses:
|
|
123
122
|
metadata:
|
124
123
|
allowed_push_host: https://rubygems.org
|
125
124
|
homepage_uri: https://github.com/jiraffeinc/sidekiq-queues-exporter
|
125
|
+
source_code_uri: https://github.com/jiraffeinc/sidekiq-queues-exporter
|
126
126
|
post_install_message:
|
127
127
|
rdoc_options: []
|
128
128
|
require_paths:
|