sidekiq-prometheus-exporter 0.1.16 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yaml +10 -8
- data/.rubocop.yml +4 -1
- data/Appraisals +8 -15
- data/README.md +3 -2
- data/Rakefile +15 -9
- data/docker/Dockerfile +5 -5
- data/gemfiles/{sidekiq_3.x.Gemfile → sidekiq_4.1.0.Gemfile} +1 -4
- data/gemfiles/sidekiq_4.1.0.Gemfile.lock +117 -0
- data/gemfiles/sidekiq_4.x.Gemfile +1 -1
- data/gemfiles/sidekiq_4.x.Gemfile.lock +50 -46
- data/gemfiles/sidekiq_5.x.Gemfile.lock +48 -44
- data/gemfiles/sidekiq_6.x.Gemfile.lock +51 -47
- data/gemfiles/sidekiq_7.x.Gemfile +8 -0
- data/gemfiles/sidekiq_7.x.Gemfile.lock +109 -0
- data/gemfiles/sidekiq_latest.Gemfile.lock +54 -46
- data/helm/sidekiq-prometheus-exporter/Chart.yaml +2 -2
- data/helm/sidekiq-prometheus-exporter/README.md +3 -1
- data/helm/sidekiq-prometheus-exporter/templates/deployment.yaml +3 -0
- data/helm/sidekiq-prometheus-exporter/values.yaml +5 -1
- data/lib/sidekiq/prometheus/exporter/standard.rb +5 -2
- data/lib/sidekiq/prometheus/exporter/templates/standard.erb +4 -0
- data/lib/sidekiq/prometheus/exporter/version.rb +4 -1
- data/lib/sidekiq/prometheus/exporter.rb +1 -1
- data/sidekiq-prometheus-exporter.gemspec +4 -1
- metadata +38 -9
- data/gemfiles/sidekiq_3.3.1.Gemfile +0 -12
- data/gemfiles/sidekiq_3.3.1.Gemfile.lock +0 -125
- data/gemfiles/sidekiq_3.x.Gemfile.lock +0 -140
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 420aff1e44de33405644188fadfe166fe8b8b1f24994ad0035bc2f350e968718
|
4
|
+
data.tar.gz: ec7e9d8fba8d9f56151a7c759ccc55202f8a5ef7a776cf5ce273aea834cea60e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fba09943f7bbb9c886ee10ad36ea9647e26411bbf378676ae99cdfc26b3adb9e41c9bf346dd496c3b087f119851267fa2a25d997b79117fcd9b88b9524ec8f4
|
7
|
+
data.tar.gz: 8a2dbb2c61076fc58913f6c83eb27be187279d113fc1c1112eb0fbb051dbf1a56b5ce521e267afccda87aa7a9bfbde86d32ab3cd877f4e9bcbdadf761556d7d7
|
data/.github/workflows/ci.yaml
CHANGED
@@ -5,6 +5,9 @@ on:
|
|
5
5
|
branches: ["master"]
|
6
6
|
pull_request:
|
7
7
|
branches: ["master"]
|
8
|
+
schedule:
|
9
|
+
# Run the workflow once per month
|
10
|
+
- cron: "0 0 1 * *"
|
8
11
|
jobs:
|
9
12
|
rubocop:
|
10
13
|
name: Rubocop
|
@@ -13,11 +16,10 @@ jobs:
|
|
13
16
|
- uses: actions/checkout@v2
|
14
17
|
- uses: ruby/setup-ruby@v1
|
15
18
|
with:
|
16
|
-
ruby-version:
|
19
|
+
ruby-version: 2.7.8
|
17
20
|
- name: rubocop
|
18
21
|
uses: reviewdog/action-rubocop@v2
|
19
22
|
with:
|
20
|
-
github_token: ${{ secrets.GITHUB_TOKEN }}
|
21
23
|
rubocop_version: gemfile
|
22
24
|
rubocop_extensions: rubocop-rake:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
|
23
25
|
reporter: github-pr-review
|
@@ -30,17 +32,17 @@ jobs:
|
|
30
32
|
strategy:
|
31
33
|
matrix:
|
32
34
|
# Always keep a window of "5 most recent" including (or on top with) HEAD
|
33
|
-
ruby: ["2.
|
34
|
-
sidekiq: ["
|
35
|
+
ruby: ["2.7.8", "3.0.6", "3.1.4", "3.2.2", "latest"]
|
36
|
+
sidekiq: ["4.1.0", "4.x", "5.x", "6.x", "7.x", "latest"]
|
35
37
|
# Allow failures ... kind-a
|
36
38
|
exclude:
|
37
|
-
- ruby: "2.
|
39
|
+
- ruby: "2.7.8"
|
38
40
|
sidekiq: "latest"
|
39
|
-
- ruby: "
|
41
|
+
- ruby: "3.0.6"
|
40
42
|
sidekiq: "latest"
|
41
|
-
- ruby: "
|
43
|
+
- ruby: "3.1.4"
|
42
44
|
sidekiq: "latest"
|
43
|
-
- ruby: "3.
|
45
|
+
- ruby: "3.2.2"
|
44
46
|
sidekiq: "latest"
|
45
47
|
|
46
48
|
container:
|
data/.rubocop.yml
CHANGED
@@ -8,6 +8,9 @@ AllCops:
|
|
8
8
|
NewCops: enable
|
9
9
|
SuggestExtensions: false
|
10
10
|
TargetRubyVersion: ~
|
11
|
+
Exclude:
|
12
|
+
- "gemfiles/**/*"
|
13
|
+
- "tmp/**/*"
|
11
14
|
|
12
15
|
Gemspec/RequiredRubyVersion:
|
13
16
|
Enabled: false
|
@@ -69,7 +72,7 @@ Layout/MultilineOperationIndentation:
|
|
69
72
|
IndentationWidth: ~
|
70
73
|
|
71
74
|
Metrics/AbcSize:
|
72
|
-
Max:
|
75
|
+
Max: 35
|
73
76
|
CountRepeatedAttributes: false
|
74
77
|
|
75
78
|
Metrics/MethodLength:
|
data/Appraisals
CHANGED
@@ -1,24 +1,12 @@
|
|
1
|
-
appraise 'sidekiq-
|
2
|
-
gem 'slim'
|
1
|
+
appraise 'sidekiq-4.1.0' do
|
3
2
|
gem 'redis', '~> 3.3'
|
4
|
-
gem '
|
3
|
+
gem 'sidekiq', '= 4.1.0'
|
5
4
|
gem 'sinatra'
|
6
|
-
gem 'concurrent-ruby'
|
7
|
-
gem 'sidekiq', '= 3.3.1'
|
8
|
-
end
|
9
|
-
|
10
|
-
appraise 'sidekiq-3.x' do
|
11
|
-
gem 'slim'
|
12
|
-
gem 'redis', '~> 3.3'
|
13
|
-
gem 'redis-namespace', '< 1.7.0'
|
14
|
-
gem 'sinatra'
|
15
|
-
gem 'concurrent-ruby'
|
16
|
-
gem 'sidekiq', '~> 3.0'
|
17
5
|
end
|
18
6
|
|
19
7
|
appraise 'sidekiq-4.x' do
|
20
8
|
gem 'redis', '~> 3.3'
|
21
|
-
gem 'sidekiq', '~> 4.
|
9
|
+
gem 'sidekiq', '~> 4.1'
|
22
10
|
end
|
23
11
|
|
24
12
|
appraise 'sidekiq-5.x' do
|
@@ -31,6 +19,11 @@ appraise 'sidekiq-6.x' do
|
|
31
19
|
gem 'sidekiq', '~> 6.0'
|
32
20
|
end
|
33
21
|
|
22
|
+
appraise 'sidekiq-7.x' do
|
23
|
+
gem 'redis', '~> 5.0'
|
24
|
+
gem 'sidekiq', '~> 7.0'
|
25
|
+
end
|
26
|
+
|
34
27
|
appraise 'sidekiq-latest' do
|
35
28
|
gem 'rack', '>= 2', github: 'rack/rack'
|
36
29
|
gem 'redis', '>= 4', github: 'redis/redis-rb'
|
data/README.md
CHANGED
@@ -20,7 +20,7 @@ Open [dashboard example file](/examples/sidekiq-dashboard.grafana-7.json) (grafa
|
|
20
20
|
|
21
21
|
# Available metrics
|
22
22
|
|
23
|
-
_(starting Sidekiq `
|
23
|
+
_(starting Sidekiq `v4.1.0`)_
|
24
24
|
|
25
25
|
## Standard
|
26
26
|
|
@@ -30,6 +30,7 @@ _(starting Sidekiq `v3.3.1`)_
|
|
30
30
|
| sidekiq_failed_jobs_total | counter | The total number of failed jobs |
|
31
31
|
| sidekiq_workers | gauge | The number of workers across all the processes |
|
32
32
|
| sidekiq_processes | gauge | The number of processes |
|
33
|
+
| sidekiq_host_processes | gauge | The number of processes running on the host (labels: `host`, `quiet`) |
|
33
34
|
| sidekiq_busy_workers | gauge | The number of workers performing the job |
|
34
35
|
| sidekiq_enqueued_jobs | gauge | The number of enqueued jobs |
|
35
36
|
| sidekiq_scheduled_jobs | gauge | The number of jobs scheduled for a future execution |
|
@@ -220,4 +221,4 @@ please make sure that you are following naming conventions from [Prometheus](htt
|
|
220
221
|
|
221
222
|
# License
|
222
223
|
|
223
|
-
Please see [LICENSE](
|
224
|
+
Please see [LICENSE](/LICENSE) for licensing details.
|
data/Rakefile
CHANGED
@@ -12,6 +12,7 @@ require 'fileutils'
|
|
12
12
|
require_relative 'lib/sidekiq/prometheus/exporter/version'
|
13
13
|
|
14
14
|
VERSION = Sidekiq::Prometheus::Exporter::VERSION
|
15
|
+
DOCKER_PATCH_VERSION = Sidekiq::Prometheus::Exporter::DOCKER_PATCH_VERSION
|
15
16
|
|
16
17
|
def execute(command)
|
17
18
|
output = `#{command}`
|
@@ -24,17 +25,22 @@ def execute(command)
|
|
24
25
|
output
|
25
26
|
end
|
26
27
|
|
28
|
+
def docker_version
|
29
|
+
patch = DOCKER_PATCH_VERSION unless DOCKER_PATCH_VERSION.to_i.zero?
|
30
|
+
[VERSION, patch].compact.join('-')
|
31
|
+
end
|
32
|
+
|
27
33
|
namespace :docker do
|
28
|
-
desc "Release new Docker image strech/sidekiq-prometheus-exporter:#{
|
29
|
-
task :release, %i(
|
30
|
-
version =
|
34
|
+
desc "Release new Docker image strech/sidekiq-prometheus-exporter:#{docker_version} (latest)"
|
35
|
+
task :release, %i(version) do |_, args|
|
36
|
+
version = args.fetch(:version, docker_version)
|
31
37
|
|
32
38
|
Rake::Task['docker:build'].invoke(version)
|
33
39
|
Rake::Task['docker:push'].invoke(version)
|
34
40
|
end
|
35
41
|
|
36
42
|
task :build, %i(version) do |_, args|
|
37
|
-
args.with_defaults(version:
|
43
|
+
args.with_defaults(version: docker_version)
|
38
44
|
image = 'strech/sidekiq-prometheus-exporter'
|
39
45
|
|
40
46
|
Dir.chdir(File.expand_path('./docker')) do
|
@@ -45,7 +51,7 @@ namespace :docker do
|
|
45
51
|
end
|
46
52
|
|
47
53
|
task :push, %i(version) do |_, args|
|
48
|
-
args.with_defaults(version:
|
54
|
+
args.with_defaults(version: docker_version)
|
49
55
|
image = 'strech/sidekiq-prometheus-exporter'
|
50
56
|
|
51
57
|
execute("docker push #{image}:#{args.version}")
|
@@ -57,12 +63,12 @@ end
|
|
57
63
|
|
58
64
|
namespace :helm do
|
59
65
|
desc 'Generate new Helm repo index'
|
60
|
-
task :generate, %i(
|
61
|
-
|
66
|
+
task :generate, %i(version) do |_, args|
|
67
|
+
args.with_defaults(version: docker_version)
|
62
68
|
archive_dir = File.expand_path("./tmp/archive-#{Time.now.to_i}")
|
63
69
|
|
64
70
|
Rake::Task['helm:package'].invoke(archive_dir)
|
65
|
-
Rake::Task['helm:index'].invoke(archive_dir, version)
|
71
|
+
Rake::Task['helm:index'].invoke(archive_dir, args.version)
|
66
72
|
|
67
73
|
puts "New index generated: #{File.join(archive_dir, 'index.yaml')}"
|
68
74
|
end
|
@@ -77,7 +83,7 @@ namespace :helm do
|
|
77
83
|
end
|
78
84
|
|
79
85
|
task :index, %i(directory version) do |_, args|
|
80
|
-
args.with_defaults(version:
|
86
|
+
args.with_defaults(version: docker_version)
|
81
87
|
|
82
88
|
Dir.chdir(args.fetch(:directory)) do
|
83
89
|
url = "https://github.com/Strech/sidekiq-prometheus-exporter/releases/download/v#{args.version}"
|
data/docker/Dockerfile
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
FROM ruby:2.7.
|
1
|
+
FROM ruby:2.7.7-alpine3.16
|
2
2
|
|
3
3
|
LABEL maintainer="Sergey Fedorov <oni.strech@gmail.com>"
|
4
4
|
LABEL repository="strech/sidekiq-prometheus-exporter"
|
5
5
|
|
6
|
-
ENV RACK_VERSION 2.
|
7
|
-
ENV SIDEKIQ_VERSION 6.
|
8
|
-
ENV REDIS_NAMESPACE_VERSION 1.
|
9
|
-
ENV SIDEKIQ_PROMETHEUS_EXPORTER_VERSION 0.1.
|
6
|
+
ENV RACK_VERSION 2.2.4
|
7
|
+
ENV SIDEKIQ_VERSION 6.5.7
|
8
|
+
ENV REDIS_NAMESPACE_VERSION 1.9
|
9
|
+
ENV SIDEKIQ_PROMETHEUS_EXPORTER_VERSION 0.1.17
|
10
10
|
|
11
11
|
RUN addgroup -S exporter \
|
12
12
|
&& adduser -s /bin/false -SDHg exporter exporter \
|
@@ -0,0 +1,117 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-prometheus-exporter (0.1.17)
|
5
|
+
rack (>= 1.6.0)
|
6
|
+
sidekiq (>= 3.3.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
ast (2.4.2)
|
16
|
+
byebug (11.1.3)
|
17
|
+
coderay (1.1.3)
|
18
|
+
concurrent-ruby (1.2.2)
|
19
|
+
connection_pool (2.4.0)
|
20
|
+
diff-lcs (1.5.0)
|
21
|
+
json (2.6.3)
|
22
|
+
method_source (1.0.0)
|
23
|
+
mustermann (3.0.0)
|
24
|
+
ruby2_keywords (~> 0.0.1)
|
25
|
+
parallel (1.23.0)
|
26
|
+
parser (3.2.2.0)
|
27
|
+
ast (~> 2.4.1)
|
28
|
+
pry (0.14.2)
|
29
|
+
coderay (~> 1.1)
|
30
|
+
method_source (~> 1.0)
|
31
|
+
pry-byebug (3.10.1)
|
32
|
+
byebug (~> 11.0)
|
33
|
+
pry (>= 0.13, < 0.15)
|
34
|
+
rack (2.2.6.4)
|
35
|
+
rack-protection (3.0.3)
|
36
|
+
rack
|
37
|
+
rack-test (1.1.0)
|
38
|
+
rack (>= 1.0, < 3)
|
39
|
+
rainbow (3.1.1)
|
40
|
+
rake (13.0.6)
|
41
|
+
redis (3.3.5)
|
42
|
+
regexp_parser (2.8.0)
|
43
|
+
rexml (3.2.5)
|
44
|
+
rspec (3.12.0)
|
45
|
+
rspec-core (~> 3.12.0)
|
46
|
+
rspec-expectations (~> 3.12.0)
|
47
|
+
rspec-mocks (~> 3.12.0)
|
48
|
+
rspec-core (3.12.2)
|
49
|
+
rspec-support (~> 3.12.0)
|
50
|
+
rspec-expectations (3.12.3)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.12.0)
|
53
|
+
rspec-mocks (3.12.5)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.12.0)
|
56
|
+
rspec-support (3.12.0)
|
57
|
+
rubocop (1.50.2)
|
58
|
+
json (~> 2.3)
|
59
|
+
parallel (~> 1.10)
|
60
|
+
parser (>= 3.2.0.0)
|
61
|
+
rainbow (>= 2.2.2, < 4.0)
|
62
|
+
regexp_parser (>= 1.8, < 3.0)
|
63
|
+
rexml (>= 3.2.5, < 4.0)
|
64
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
65
|
+
ruby-progressbar (~> 1.7)
|
66
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
67
|
+
rubocop-ast (1.28.0)
|
68
|
+
parser (>= 3.2.1.0)
|
69
|
+
rubocop-capybara (2.18.0)
|
70
|
+
rubocop (~> 1.41)
|
71
|
+
rubocop-performance (1.17.1)
|
72
|
+
rubocop (>= 1.7.0, < 2.0)
|
73
|
+
rubocop-ast (>= 0.4.0)
|
74
|
+
rubocop-rake (0.6.0)
|
75
|
+
rubocop (~> 1.0)
|
76
|
+
rubocop-rspec (2.20.0)
|
77
|
+
rubocop (~> 1.33)
|
78
|
+
rubocop-capybara (~> 2.17)
|
79
|
+
ruby-progressbar (1.13.0)
|
80
|
+
ruby2_keywords (0.0.5)
|
81
|
+
sidekiq (4.1.0)
|
82
|
+
concurrent-ruby (~> 1.0)
|
83
|
+
connection_pool (~> 2.2, >= 2.2.0)
|
84
|
+
redis (~> 3.2, >= 3.2.1)
|
85
|
+
sinatra (3.0.3)
|
86
|
+
mustermann (~> 3.0)
|
87
|
+
rack (~> 2.2, >= 2.2.4)
|
88
|
+
rack-protection (= 3.0.3)
|
89
|
+
tilt (~> 2.0)
|
90
|
+
thor (1.2.1)
|
91
|
+
tilt (2.0.11)
|
92
|
+
timecop (0.9.6)
|
93
|
+
unicode-display_width (2.4.2)
|
94
|
+
|
95
|
+
PLATFORMS
|
96
|
+
x86_64-darwin-21
|
97
|
+
|
98
|
+
DEPENDENCIES
|
99
|
+
appraisal (~> 2.2)
|
100
|
+
bundler (~> 2.1)
|
101
|
+
pry (~> 0.14)
|
102
|
+
pry-byebug (~> 3.6)
|
103
|
+
rack-test (~> 1.1)
|
104
|
+
rake (~> 13.0)
|
105
|
+
redis (~> 3.3)
|
106
|
+
rspec (~> 3.0)
|
107
|
+
rubocop (~> 1.22)
|
108
|
+
rubocop-performance (~> 1.12)
|
109
|
+
rubocop-rake (~> 0.6)
|
110
|
+
rubocop-rspec (~> 2.6)
|
111
|
+
sidekiq (= 4.1.0)
|
112
|
+
sidekiq-prometheus-exporter!
|
113
|
+
sinatra
|
114
|
+
timecop (~> 0.9)
|
115
|
+
|
116
|
+
BUNDLED WITH
|
117
|
+
2.3.26
|
@@ -1,82 +1,85 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
sidekiq-prometheus-exporter (0.1.
|
4
|
+
sidekiq-prometheus-exporter (0.1.17)
|
5
|
+
rack (>= 1.6.0)
|
5
6
|
sidekiq (>= 3.3.1)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
9
10
|
specs:
|
10
|
-
appraisal (2.
|
11
|
+
appraisal (2.4.1)
|
11
12
|
bundler
|
12
13
|
rake
|
13
14
|
thor (>= 0.14.0)
|
14
15
|
ast (2.4.2)
|
15
|
-
byebug (
|
16
|
-
coderay (1.1.
|
17
|
-
concurrent-ruby (1.1.
|
18
|
-
connection_pool (2.
|
19
|
-
diff-lcs (1.
|
20
|
-
|
21
|
-
|
22
|
-
|
16
|
+
byebug (11.1.3)
|
17
|
+
coderay (1.1.3)
|
18
|
+
concurrent-ruby (1.1.10)
|
19
|
+
connection_pool (2.3.0)
|
20
|
+
diff-lcs (1.5.0)
|
21
|
+
json (2.6.2)
|
22
|
+
method_source (1.0.0)
|
23
|
+
parallel (1.22.1)
|
24
|
+
parser (3.1.2.1)
|
23
25
|
ast (~> 2.4.1)
|
24
|
-
pry (0.
|
25
|
-
coderay (~> 1.1
|
26
|
-
method_source (~>
|
27
|
-
pry-byebug (3.
|
28
|
-
byebug (~>
|
29
|
-
pry (
|
30
|
-
rack (2.2.
|
31
|
-
rack-protection (
|
26
|
+
pry (0.14.2)
|
27
|
+
coderay (~> 1.1)
|
28
|
+
method_source (~> 1.0)
|
29
|
+
pry-byebug (3.10.1)
|
30
|
+
byebug (~> 11.0)
|
31
|
+
pry (>= 0.13, < 0.15)
|
32
|
+
rack (2.2.4)
|
33
|
+
rack-protection (3.0.3)
|
32
34
|
rack
|
33
35
|
rack-test (1.1.0)
|
34
36
|
rack (>= 1.0, < 3)
|
35
|
-
rainbow (3.
|
36
|
-
rake (13.0.
|
37
|
+
rainbow (3.1.1)
|
38
|
+
rake (13.0.6)
|
37
39
|
redis (3.3.5)
|
38
|
-
regexp_parser (2.
|
40
|
+
regexp_parser (2.6.1)
|
39
41
|
rexml (3.2.5)
|
40
|
-
rspec (3.
|
41
|
-
rspec-core (~> 3.
|
42
|
-
rspec-expectations (~> 3.
|
43
|
-
rspec-mocks (~> 3.
|
44
|
-
rspec-core (3.
|
45
|
-
rspec-support (~> 3.
|
46
|
-
rspec-expectations (3.
|
42
|
+
rspec (3.12.0)
|
43
|
+
rspec-core (~> 3.12.0)
|
44
|
+
rspec-expectations (~> 3.12.0)
|
45
|
+
rspec-mocks (~> 3.12.0)
|
46
|
+
rspec-core (3.12.0)
|
47
|
+
rspec-support (~> 3.12.0)
|
48
|
+
rspec-expectations (3.12.0)
|
47
49
|
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.
|
49
|
-
rspec-mocks (3.
|
50
|
+
rspec-support (~> 3.12.0)
|
51
|
+
rspec-mocks (3.12.0)
|
50
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
-
rspec-support (~> 3.
|
52
|
-
rspec-support (3.
|
53
|
-
rubocop (1.
|
53
|
+
rspec-support (~> 3.12.0)
|
54
|
+
rspec-support (3.12.0)
|
55
|
+
rubocop (1.39.0)
|
56
|
+
json (~> 2.3)
|
54
57
|
parallel (~> 1.10)
|
55
|
-
parser (>= 3.
|
58
|
+
parser (>= 3.1.2.1)
|
56
59
|
rainbow (>= 2.2.2, < 4.0)
|
57
60
|
regexp_parser (>= 1.8, < 3.0)
|
58
|
-
rexml
|
59
|
-
rubocop-ast (>= 1.
|
61
|
+
rexml (>= 3.2.5, < 4.0)
|
62
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
60
63
|
ruby-progressbar (~> 1.7)
|
61
64
|
unicode-display_width (>= 1.4.0, < 3.0)
|
62
|
-
rubocop-ast (1.
|
63
|
-
parser (>= 3.
|
64
|
-
rubocop-performance (1.
|
65
|
+
rubocop-ast (1.23.0)
|
66
|
+
parser (>= 3.1.1.0)
|
67
|
+
rubocop-performance (1.15.1)
|
65
68
|
rubocop (>= 1.7.0, < 2.0)
|
66
69
|
rubocop-ast (>= 0.4.0)
|
67
70
|
rubocop-rake (0.6.0)
|
68
71
|
rubocop (~> 1.0)
|
69
|
-
rubocop-rspec (2.
|
70
|
-
rubocop (~> 1.
|
72
|
+
rubocop-rspec (2.15.0)
|
73
|
+
rubocop (~> 1.33)
|
71
74
|
ruby-progressbar (1.11.0)
|
72
75
|
sidekiq (4.2.10)
|
73
76
|
concurrent-ruby (~> 1.0)
|
74
77
|
connection_pool (~> 2.2, >= 2.2.0)
|
75
78
|
rack-protection (>= 1.5.0)
|
76
79
|
redis (~> 3.2, >= 3.2.1)
|
77
|
-
thor (1.
|
78
|
-
timecop (0.9.
|
79
|
-
unicode-display_width (2.
|
80
|
+
thor (1.2.1)
|
81
|
+
timecop (0.9.5)
|
82
|
+
unicode-display_width (2.3.0)
|
80
83
|
|
81
84
|
PLATFORMS
|
82
85
|
ruby
|
@@ -84,6 +87,7 @@ PLATFORMS
|
|
84
87
|
DEPENDENCIES
|
85
88
|
appraisal (~> 2.2)
|
86
89
|
bundler (~> 2.1)
|
90
|
+
pry (~> 0.14)
|
87
91
|
pry-byebug (~> 3.6)
|
88
92
|
rack-test (~> 1.1)
|
89
93
|
rake (~> 13.0)
|
@@ -93,9 +97,9 @@ DEPENDENCIES
|
|
93
97
|
rubocop-performance (~> 1.12)
|
94
98
|
rubocop-rake (~> 0.6)
|
95
99
|
rubocop-rspec (~> 2.6)
|
96
|
-
sidekiq (~> 4.
|
100
|
+
sidekiq (~> 4.1)
|
97
101
|
sidekiq-prometheus-exporter!
|
98
102
|
timecop (~> 0.9)
|
99
103
|
|
100
104
|
BUNDLED WITH
|
101
|
-
2.
|
105
|
+
2.3.26
|
@@ -1,81 +1,84 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
sidekiq-prometheus-exporter (0.1.
|
4
|
+
sidekiq-prometheus-exporter (0.1.17)
|
5
|
+
rack (>= 1.6.0)
|
5
6
|
sidekiq (>= 3.3.1)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
9
10
|
specs:
|
10
|
-
appraisal (2.
|
11
|
+
appraisal (2.4.1)
|
11
12
|
bundler
|
12
13
|
rake
|
13
14
|
thor (>= 0.14.0)
|
14
15
|
ast (2.4.2)
|
15
|
-
byebug (
|
16
|
-
coderay (1.1.
|
17
|
-
connection_pool (2.
|
18
|
-
diff-lcs (1.
|
19
|
-
|
20
|
-
|
21
|
-
|
16
|
+
byebug (11.1.3)
|
17
|
+
coderay (1.1.3)
|
18
|
+
connection_pool (2.3.0)
|
19
|
+
diff-lcs (1.5.0)
|
20
|
+
json (2.6.2)
|
21
|
+
method_source (1.0.0)
|
22
|
+
parallel (1.22.1)
|
23
|
+
parser (3.1.2.1)
|
22
24
|
ast (~> 2.4.1)
|
23
|
-
pry (0.
|
24
|
-
coderay (~> 1.1
|
25
|
-
method_source (~>
|
26
|
-
pry-byebug (3.
|
27
|
-
byebug (~>
|
28
|
-
pry (
|
29
|
-
rack (2.2.
|
30
|
-
rack-protection (
|
25
|
+
pry (0.14.2)
|
26
|
+
coderay (~> 1.1)
|
27
|
+
method_source (~> 1.0)
|
28
|
+
pry-byebug (3.10.1)
|
29
|
+
byebug (~> 11.0)
|
30
|
+
pry (>= 0.13, < 0.15)
|
31
|
+
rack (2.2.4)
|
32
|
+
rack-protection (3.0.3)
|
31
33
|
rack
|
32
34
|
rack-test (1.1.0)
|
33
35
|
rack (>= 1.0, < 3)
|
34
|
-
rainbow (3.
|
35
|
-
rake (13.0.
|
36
|
+
rainbow (3.1.1)
|
37
|
+
rake (13.0.6)
|
36
38
|
redis (3.3.5)
|
37
|
-
regexp_parser (2.
|
39
|
+
regexp_parser (2.6.1)
|
38
40
|
rexml (3.2.5)
|
39
|
-
rspec (3.
|
40
|
-
rspec-core (~> 3.
|
41
|
-
rspec-expectations (~> 3.
|
42
|
-
rspec-mocks (~> 3.
|
43
|
-
rspec-core (3.
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-expectations (3.
|
41
|
+
rspec (3.12.0)
|
42
|
+
rspec-core (~> 3.12.0)
|
43
|
+
rspec-expectations (~> 3.12.0)
|
44
|
+
rspec-mocks (~> 3.12.0)
|
45
|
+
rspec-core (3.12.0)
|
46
|
+
rspec-support (~> 3.12.0)
|
47
|
+
rspec-expectations (3.12.0)
|
46
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.
|
48
|
-
rspec-mocks (3.
|
49
|
+
rspec-support (~> 3.12.0)
|
50
|
+
rspec-mocks (3.12.0)
|
49
51
|
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
-
rspec-support (~> 3.
|
51
|
-
rspec-support (3.
|
52
|
-
rubocop (1.
|
52
|
+
rspec-support (~> 3.12.0)
|
53
|
+
rspec-support (3.12.0)
|
54
|
+
rubocop (1.39.0)
|
55
|
+
json (~> 2.3)
|
53
56
|
parallel (~> 1.10)
|
54
|
-
parser (>= 3.
|
57
|
+
parser (>= 3.1.2.1)
|
55
58
|
rainbow (>= 2.2.2, < 4.0)
|
56
59
|
regexp_parser (>= 1.8, < 3.0)
|
57
|
-
rexml
|
58
|
-
rubocop-ast (>= 1.
|
60
|
+
rexml (>= 3.2.5, < 4.0)
|
61
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
59
62
|
ruby-progressbar (~> 1.7)
|
60
63
|
unicode-display_width (>= 1.4.0, < 3.0)
|
61
|
-
rubocop-ast (1.
|
62
|
-
parser (>= 3.
|
63
|
-
rubocop-performance (1.
|
64
|
+
rubocop-ast (1.23.0)
|
65
|
+
parser (>= 3.1.1.0)
|
66
|
+
rubocop-performance (1.15.1)
|
64
67
|
rubocop (>= 1.7.0, < 2.0)
|
65
68
|
rubocop-ast (>= 0.4.0)
|
66
69
|
rubocop-rake (0.6.0)
|
67
70
|
rubocop (~> 1.0)
|
68
|
-
rubocop-rspec (2.
|
69
|
-
rubocop (~> 1.
|
71
|
+
rubocop-rspec (2.15.0)
|
72
|
+
rubocop (~> 1.33)
|
70
73
|
ruby-progressbar (1.11.0)
|
71
74
|
sidekiq (5.2.9)
|
72
75
|
connection_pool (~> 2.2, >= 2.2.2)
|
73
76
|
rack (~> 2.0)
|
74
77
|
rack-protection (>= 1.5.0)
|
75
78
|
redis (>= 3.3.5, < 4.2)
|
76
|
-
thor (1.
|
77
|
-
timecop (0.9.
|
78
|
-
unicode-display_width (2.
|
79
|
+
thor (1.2.1)
|
80
|
+
timecop (0.9.5)
|
81
|
+
unicode-display_width (2.3.0)
|
79
82
|
|
80
83
|
PLATFORMS
|
81
84
|
ruby
|
@@ -83,6 +86,7 @@ PLATFORMS
|
|
83
86
|
DEPENDENCIES
|
84
87
|
appraisal (~> 2.2)
|
85
88
|
bundler (~> 2.1)
|
89
|
+
pry (~> 0.14)
|
86
90
|
pry-byebug (~> 3.6)
|
87
91
|
rack-test (~> 1.1)
|
88
92
|
rake (~> 13.0)
|
@@ -97,4 +101,4 @@ DEPENDENCIES
|
|
97
101
|
timecop (~> 0.9)
|
98
102
|
|
99
103
|
BUNDLED WITH
|
100
|
-
2.
|
104
|
+
2.3.26
|