sidekiq-instrumentation 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +129 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/.rubocop.yml +35 -0
- data/.travis.yml +7 -0
- data/CHANGELOG.md +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +93 -0
- data/LICENSE +201 -0
- data/README.md +79 -0
- data/Rakefile +9 -0
- data/lib/sidekiq/tracer.rb +45 -0
- data/lib/sidekiq/tracer/client_middleware.rb +48 -0
- data/lib/sidekiq/tracer/commons.rb +22 -0
- data/lib/sidekiq/tracer/constants.rb +7 -0
- data/lib/sidekiq/tracer/server_middleware.rb +51 -0
- data/lib/sidekiq/tracer/version.rb +7 -0
- data/lib/sidekiq_instrumentation.rb +3 -0
- data/sidekiq-instrumentation.gemspec +36 -0
- metadata +217 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 25b3b21f6becf08c671e2ea732966e440cb6069a55b4a686998e9bc35b31e7b6
|
4
|
+
data.tar.gz: 5f123ced7f7e8abea18048085e83dfc932fdb779712d455d1c0b6d53c4c9c935
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2628bc838cd6eb2aaf60d6745adcdf40d80c48ea3ad789b498aba02da57b89839af1388eccdaa7dbfd4e40bef223a3f12b1edd5ded3e2fbdd8a7be971b6e8c92
|
7
|
+
data.tar.gz: f2aa11692bd31b2cc0d168dc64447c999ea063f55e838cc52649d3ef5ded5953c67b872312d4073248ea49d5c89e5bbd127df96c75b96db7b8e5a524e278cb57
|
@@ -0,0 +1,129 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
orbs:
|
4
|
+
gem: doximity/gem-publisher@0
|
5
|
+
|
6
|
+
executors:
|
7
|
+
ruby-latest:
|
8
|
+
resource_class: small
|
9
|
+
docker:
|
10
|
+
- image: circleci/ruby:latest
|
11
|
+
environment:
|
12
|
+
BUNDLE_VERSION: "~> 1.17"
|
13
|
+
|
14
|
+
# yaml anchor filters
|
15
|
+
master_only: &master_only
|
16
|
+
filters:
|
17
|
+
branches:
|
18
|
+
only: master
|
19
|
+
tags:
|
20
|
+
ignore: /.*/
|
21
|
+
pr_only: &pr_only
|
22
|
+
filters:
|
23
|
+
branches:
|
24
|
+
ignore: master
|
25
|
+
tags:
|
26
|
+
ignore: /.*/
|
27
|
+
version_tags_only: &version_tags_only
|
28
|
+
filters:
|
29
|
+
branches:
|
30
|
+
ignore: /.*/
|
31
|
+
tags:
|
32
|
+
only: /^v.*/
|
33
|
+
|
34
|
+
jobs:
|
35
|
+
build:
|
36
|
+
executor: ruby-latest
|
37
|
+
steps:
|
38
|
+
- checkout
|
39
|
+
- run:
|
40
|
+
name: Install Bundler specific version
|
41
|
+
command: |
|
42
|
+
gem install bundler --version "${BUNDLE_VERSION}" --force
|
43
|
+
- restore_cache:
|
44
|
+
keys:
|
45
|
+
- v1-bundle-{{ checksum "Gemfile.lock" }}-
|
46
|
+
- run:
|
47
|
+
name: Install Ruby Dependencies
|
48
|
+
command: bundle check --path=vendor/bundle || bundle install --local --frozen --path=vendor/bundle --jobs=4 --retry=3
|
49
|
+
- save_cache:
|
50
|
+
key: v1-bundle-{{ checksum "Gemfile.lock" }}-
|
51
|
+
paths:
|
52
|
+
- vendor/bundle
|
53
|
+
- run:
|
54
|
+
name: Run Tests
|
55
|
+
command: bundle exec rake ci:specs
|
56
|
+
- store_test_results:
|
57
|
+
name: Store test results
|
58
|
+
path: tmp/test-results
|
59
|
+
- run:
|
60
|
+
name: Run Rubocop
|
61
|
+
command: bundle exec rake ci:rubocop
|
62
|
+
- run:
|
63
|
+
name: Build documentation
|
64
|
+
command: bundle exec rake ci:doc
|
65
|
+
- store_artifacts:
|
66
|
+
name: Saves documentation
|
67
|
+
path: doc
|
68
|
+
- persist_to_workspace:
|
69
|
+
root: .
|
70
|
+
paths:
|
71
|
+
- vendor/bundle
|
72
|
+
|
73
|
+
|
74
|
+
workflows:
|
75
|
+
version: 2
|
76
|
+
|
77
|
+
trunk:
|
78
|
+
jobs:
|
79
|
+
- build:
|
80
|
+
<<: *master_only
|
81
|
+
- gem/build:
|
82
|
+
<<: *master_only
|
83
|
+
executor: ruby-latest
|
84
|
+
name: gem-build
|
85
|
+
requires:
|
86
|
+
- build
|
87
|
+
|
88
|
+
pull-requests:
|
89
|
+
jobs:
|
90
|
+
- build:
|
91
|
+
<<: *pr_only
|
92
|
+
- gem/build:
|
93
|
+
<<: *pr_only
|
94
|
+
executor: ruby-latest
|
95
|
+
name: gem-build
|
96
|
+
requires:
|
97
|
+
- build
|
98
|
+
- pre-release-approval:
|
99
|
+
<<: *pr_only
|
100
|
+
type: approval
|
101
|
+
requires:
|
102
|
+
- gem-build
|
103
|
+
- gem/publish:
|
104
|
+
<<: *pr_only
|
105
|
+
name: gem-publish
|
106
|
+
to_rubygems: true
|
107
|
+
pre_release: true
|
108
|
+
requires:
|
109
|
+
- pre-release-approval
|
110
|
+
context: artifact_publishing
|
111
|
+
|
112
|
+
final-release:
|
113
|
+
jobs:
|
114
|
+
- build:
|
115
|
+
<<: *version_tags_only
|
116
|
+
- gem/build:
|
117
|
+
<<: *version_tags_only
|
118
|
+
executor: ruby-latest
|
119
|
+
name: gem-build
|
120
|
+
requires:
|
121
|
+
- build
|
122
|
+
- gem/publish:
|
123
|
+
<<: *version_tags_only
|
124
|
+
name: gem-publish
|
125
|
+
to_rubygems: true
|
126
|
+
pre_release: false
|
127
|
+
requires:
|
128
|
+
- gem-build
|
129
|
+
context: artifact_publishing
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
inherit_gem:
|
3
|
+
dox-style:
|
4
|
+
- ".rubocop.yml"
|
5
|
+
|
6
|
+
Env/OutsideConfig:
|
7
|
+
Exclude:
|
8
|
+
- "./tasks/ci.rake"
|
9
|
+
|
10
|
+
Env/UndefinedVar:
|
11
|
+
Exclude:
|
12
|
+
- "./tasks/ci.rake"
|
13
|
+
|
14
|
+
Env/UseFetch:
|
15
|
+
Exclude:
|
16
|
+
- "./bin/*"
|
17
|
+
|
18
|
+
Metrics/BlockLength:
|
19
|
+
Exclude:
|
20
|
+
- "./**/*_spec*.rb"
|
21
|
+
- "./*.gemspec"
|
22
|
+
- "./spec/*_helper*.rb"
|
23
|
+
- "./tasks/ci.rake"
|
24
|
+
- "Gemfile"
|
25
|
+
|
26
|
+
Metrics/ModuleLength:
|
27
|
+
Exclude:
|
28
|
+
- "./**/*_spec*.rb"
|
29
|
+
|
30
|
+
Metrics/MethodLength:
|
31
|
+
Exclude:
|
32
|
+
- "./**/*_spec*.rb"
|
33
|
+
|
34
|
+
Rails/ApplicationRecord:
|
35
|
+
Enabled: false
|
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at bodziomista@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
sidekiq-instrumentation (1.1.0)
|
5
|
+
opentracing (>= 0.3.1)
|
6
|
+
sidekiq
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://artifacts.dox.support/repository/gems/
|
10
|
+
specs:
|
11
|
+
ast (2.4.0)
|
12
|
+
connection_pool (2.2.2)
|
13
|
+
diff-lcs (1.3)
|
14
|
+
dox-style (1.3.0)
|
15
|
+
rubocop (~> 0.77)
|
16
|
+
rubocop-performance (~> 1.5.1)
|
17
|
+
rubocop-rails (~> 2.2.0)
|
18
|
+
rubocop-rspec (~> 1.37.0)
|
19
|
+
opentracing (0.3.2)
|
20
|
+
parallel (1.19.1)
|
21
|
+
parser (2.7.1.3)
|
22
|
+
ast (~> 2.4.0)
|
23
|
+
rack (2.2.2)
|
24
|
+
rack-protection (2.0.8.1)
|
25
|
+
rack
|
26
|
+
rainbow (3.0.0)
|
27
|
+
rake (10.5.0)
|
28
|
+
rdoc (6.2.1)
|
29
|
+
redis (4.1.4)
|
30
|
+
rexml (3.2.4)
|
31
|
+
rspec (3.8.0)
|
32
|
+
rspec-core (~> 3.8.0)
|
33
|
+
rspec-expectations (~> 3.8.0)
|
34
|
+
rspec-mocks (~> 3.8.0)
|
35
|
+
rspec-core (3.8.2)
|
36
|
+
rspec-support (~> 3.8.0)
|
37
|
+
rspec-expectations (3.8.4)
|
38
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
+
rspec-support (~> 3.8.0)
|
40
|
+
rspec-mocks (3.8.1)
|
41
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
+
rspec-support (~> 3.8.0)
|
43
|
+
rspec-support (3.8.2)
|
44
|
+
rspec_junit_formatter (0.4.1)
|
45
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
46
|
+
rubocop (0.84.0)
|
47
|
+
parallel (~> 1.10)
|
48
|
+
parser (>= 2.7.0.1)
|
49
|
+
rainbow (>= 2.2.2, < 4.0)
|
50
|
+
rexml
|
51
|
+
rubocop-ast (>= 0.0.3)
|
52
|
+
ruby-progressbar (~> 1.7)
|
53
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
54
|
+
rubocop-ast (0.0.3)
|
55
|
+
parser (>= 2.7.0.1)
|
56
|
+
rubocop-performance (1.5.2)
|
57
|
+
rubocop (>= 0.71.0)
|
58
|
+
rubocop-rails (2.2.1)
|
59
|
+
rack (>= 1.1)
|
60
|
+
rubocop (>= 0.72.0)
|
61
|
+
rubocop-rspec (1.37.1)
|
62
|
+
rubocop (>= 0.68.1)
|
63
|
+
ruby-progressbar (1.10.1)
|
64
|
+
sdoc (1.1.0)
|
65
|
+
rdoc (>= 5.0)
|
66
|
+
sidekiq (6.0.7)
|
67
|
+
connection_pool (>= 2.2.2)
|
68
|
+
rack (~> 2.0)
|
69
|
+
rack-protection (>= 2.0.0)
|
70
|
+
redis (>= 4.1.0)
|
71
|
+
test-tracer (1.2.1)
|
72
|
+
opentracing (~> 0.3.1)
|
73
|
+
tracing-matchers (1.3.0)
|
74
|
+
rspec (>= 2.0)
|
75
|
+
test-tracer (~> 1.1)
|
76
|
+
unicode-display_width (1.7.0)
|
77
|
+
|
78
|
+
PLATFORMS
|
79
|
+
ruby
|
80
|
+
|
81
|
+
DEPENDENCIES
|
82
|
+
bundler (~> 1.17)
|
83
|
+
dox-style
|
84
|
+
rake
|
85
|
+
rspec
|
86
|
+
rspec_junit_formatter
|
87
|
+
sdoc
|
88
|
+
sidekiq-instrumentation!
|
89
|
+
test-tracer (~> 1.0, >= 1.2.1)
|
90
|
+
tracing-matchers (~> 1.0, >= 1.3.0)
|
91
|
+
|
92
|
+
BUNDLED WITH
|
93
|
+
1.17.2
|
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# Sidekiq::Tracer
|
2
|
+
|
3
|
+
OpenTracing instrumentation for Sidekiq (both client, and server-side).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'sidekiq-opentracing'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install sidekiq-opentracing
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
The gem hooks up into Sidekiq through [middlewares](https://github.com/mperham/sidekiq/wiki/Middleware) - similar to Rack. Both server-side, and client-side middlewares are supported.
|
24
|
+
|
25
|
+
* Client-side middleware runs before the pushing of the job to Redis and injects the current span context into the job's metadata.
|
26
|
+
* Server-side runs around job processing, extracts the context from the job metadata and creates a new span for the server-side proessing.
|
27
|
+
|
28
|
+
To instrument Sidekiq (both sides), you need to specify at least a tracer instance and optionally an active span provider - a proc which returns a current active span. The gem plays nicely with [spanmanager](https://github.com/iaintshine/ruby-spanmanager).
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
require "sidekiq-opentracing"
|
32
|
+
|
33
|
+
Sidekiq::Tracer.instrument(tracer: OpenTracing.global_tracer,
|
34
|
+
active_span: -> { OpenTracing.global_tracer.active_span })
|
35
|
+
```
|
36
|
+
|
37
|
+
And you are all set.
|
38
|
+
|
39
|
+
The code below shows how to register and manage middlewares on your own.
|
40
|
+
|
41
|
+
Server-side:
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
Sidekiq.configure_server do |config|
|
45
|
+
config.client_middleware do |chain|
|
46
|
+
chain.add Sidekiq::Tracer::ClientMiddleware, tracer: OpenTracing.global_tracer
|
47
|
+
end
|
48
|
+
|
49
|
+
config.server_middleware do |chain|
|
50
|
+
chain.add Sidekiq::Tracer::ServerMiddleware, tracer: OpenTracing.global_tracer
|
51
|
+
end
|
52
|
+
end
|
53
|
+
```
|
54
|
+
|
55
|
+
Client-side:
|
56
|
+
|
57
|
+
```ruby
|
58
|
+
Sidekiq.configure_client do |config|
|
59
|
+
config.client_middleware do |chain|
|
60
|
+
chain.add Sidekiq::Tracer::ClientMiddleware, tracer: OpenTracing.global_tracer
|
61
|
+
end
|
62
|
+
end
|
63
|
+
```
|
64
|
+
|
65
|
+
# Development
|
66
|
+
|
67
|
+
## Gem documentation
|
68
|
+
|
69
|
+
You can find the documentation by going to CircleCI, looking for the `build` job, going to Artifacts and clicking on `index.html`. A visual guide on this can be found in our wiki at [Gems Development: Where to find documentation for our gems](https://wiki.doximity.com/articles/gems-development-where-to-find-documentation-for-our-gems).
|
70
|
+
|
71
|
+
## Gem development
|
72
|
+
|
73
|
+
After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests.
|
74
|
+
You can also run `bundle console` for an interactive prompt that will allow you to experiment.
|
75
|
+
|
76
|
+
This repository uses a gem publishing mechanism on the CI configuration, meaning most work related with cutting a new
|
77
|
+
version is done automatically.
|
78
|
+
|
79
|
+
To release a new version, follow the [wiki instructions](https://wiki.doximity.com/articles/gems-development-releasing-new-versions).
|
data/Rakefile
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "sidekiq"
|
4
|
+
|
5
|
+
require "sidekiq/tracer/version"
|
6
|
+
require "sidekiq/tracer/constants"
|
7
|
+
require "sidekiq/tracer/commons"
|
8
|
+
require "sidekiq/tracer/client_middleware"
|
9
|
+
require "sidekiq/tracer/server_middleware"
|
10
|
+
|
11
|
+
module Sidekiq
|
12
|
+
module Tracer
|
13
|
+
class << self
|
14
|
+
def instrument(tracer: OpenTracing.global_tracer, active_span: nil)
|
15
|
+
instrument_client(tracer: tracer, active_span: active_span)
|
16
|
+
instrument_server(tracer: tracer, active_span: active_span)
|
17
|
+
end
|
18
|
+
|
19
|
+
def instrument_client(tracer: OpenTracing.global_tracer, active_span: nil)
|
20
|
+
Sidekiq.configure_client do |config|
|
21
|
+
config.client_middleware { |chain| add_client_middleware(chain, tracer, active_span) }
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def instrument_server(tracer: OpenTracing.global_tracer, active_span: nil)
|
26
|
+
Sidekiq.configure_server do |config|
|
27
|
+
config.client_middleware { |chain| add_client_middleware(chain, tracer, active_span) }
|
28
|
+
config.server_middleware { |chain| add_server_middleware(chain, tracer, active_span) }
|
29
|
+
end
|
30
|
+
|
31
|
+
return unless defined?(Sidekiq::Testing)
|
32
|
+
|
33
|
+
Sidekiq::Testing.server_middleware { |chain| add_server_middleware(chain, tracer, active_span) }
|
34
|
+
end
|
35
|
+
|
36
|
+
def add_client_middleware(chain, tracer, active_span)
|
37
|
+
chain.add Sidekiq::Tracer::ClientMiddleware, tracer: tracer, active_span: active_span
|
38
|
+
end
|
39
|
+
|
40
|
+
def add_server_middleware(chain, tracer, active_span)
|
41
|
+
chain.add Sidekiq::Tracer::ServerMiddleware, tracer: tracer, active_span: active_span
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Sidekiq
|
4
|
+
module Tracer
|
5
|
+
class ClientMiddleware
|
6
|
+
include Commons
|
7
|
+
|
8
|
+
attr_reader :tracer, :active_span
|
9
|
+
|
10
|
+
def initialize(tracer:, active_span:)
|
11
|
+
@tracer = tracer
|
12
|
+
@active_span = active_span
|
13
|
+
end
|
14
|
+
|
15
|
+
def call(_worker_class, job, _queue, _redis_pool)
|
16
|
+
span = build_span(job)
|
17
|
+
|
18
|
+
inject(span, job)
|
19
|
+
|
20
|
+
yield
|
21
|
+
rescue StandardError => e
|
22
|
+
tag_errors(span, e) if span
|
23
|
+
raise
|
24
|
+
ensure
|
25
|
+
span&.finish
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def build_span(job)
|
31
|
+
tracer.start_span(operation_name(job),
|
32
|
+
child_of: active_span.respond_to?(:call) ? active_span.call : active_span,
|
33
|
+
tags: tags(job, "producer"))
|
34
|
+
end
|
35
|
+
|
36
|
+
def tag_errors(span, error)
|
37
|
+
span.set_tag("error", true)
|
38
|
+
span.log(event: "error", 'error.object': error)
|
39
|
+
end
|
40
|
+
|
41
|
+
def inject(span, job)
|
42
|
+
carrier = {}
|
43
|
+
tracer.inject(span.context, OpenTracing::FORMAT_TEXT_MAP, carrier)
|
44
|
+
job[TRACE_CONTEXT_KEY] = carrier
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Sidekiq
|
4
|
+
module Tracer
|
5
|
+
module Commons
|
6
|
+
def operation_name(job)
|
7
|
+
job["class"]
|
8
|
+
end
|
9
|
+
|
10
|
+
def tags(job, kind)
|
11
|
+
{
|
12
|
+
"component" => "Sidekiq",
|
13
|
+
"span.kind" => kind,
|
14
|
+
"sidekiq.queue" => job["queue"],
|
15
|
+
"sidekiq.jid" => job["jid"],
|
16
|
+
"sidekiq.retry" => job["retry"].to_s,
|
17
|
+
"sidekiq.args" => job["args"].join(", ")
|
18
|
+
}
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Sidekiq
|
4
|
+
module Tracer
|
5
|
+
class ServerMiddleware
|
6
|
+
include Commons
|
7
|
+
|
8
|
+
attr_reader :tracer, :active_span
|
9
|
+
|
10
|
+
def initialize(tracer:, active_span:)
|
11
|
+
@tracer = tracer
|
12
|
+
@active_span = active_span
|
13
|
+
end
|
14
|
+
|
15
|
+
def call(_worker, job, _queue)
|
16
|
+
span = build_span(job)
|
17
|
+
|
18
|
+
yield
|
19
|
+
rescue StandardError => e
|
20
|
+
tag_errors(span, e) if span
|
21
|
+
raise
|
22
|
+
ensure
|
23
|
+
span&.finish
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def build_span(job)
|
29
|
+
parent_span_context = extract(job)
|
30
|
+
|
31
|
+
follows_from = OpenTracing::Reference.follows_from(parent_span_context)
|
32
|
+
|
33
|
+
tracer.start_span(operation_name(job),
|
34
|
+
references: [follows_from],
|
35
|
+
tags: tags(job, "consumer"))
|
36
|
+
end
|
37
|
+
|
38
|
+
def tag_errors(span, error)
|
39
|
+
span.set_tag("error", true)
|
40
|
+
span.log(event: "error", 'error.object': error)
|
41
|
+
end
|
42
|
+
|
43
|
+
def extract(job)
|
44
|
+
carrier = job[TRACE_CONTEXT_KEY]
|
45
|
+
return unless carrier
|
46
|
+
|
47
|
+
tracer.extract(OpenTracing::FORMAT_TEXT_MAP, carrier)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path("lib", __dir__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
require "sidekiq/tracer/version"
|
6
|
+
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = "sidekiq-instrumentation"
|
9
|
+
spec.version = Sidekiq::Tracer::VERSION
|
10
|
+
spec.authors = %w[iaintshine Doximity]
|
11
|
+
spec.email = ["ops@doximity.com"]
|
12
|
+
spec.license = "Apache-2.0"
|
13
|
+
|
14
|
+
spec.summary = "OpenTracing instrumentation for Sidekiq."
|
15
|
+
spec.description = ""
|
16
|
+
spec.homepage = "https://github.com/doximity/ruby-sidekiq-tracer"
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
f.match(%r{^(bin|test|spec|features|vendor|tasks|tmp)/})
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_dependency "opentracing", ">= 0.3.1"
|
26
|
+
spec.add_dependency "sidekiq"
|
27
|
+
|
28
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
29
|
+
spec.add_development_dependency "dox-style"
|
30
|
+
spec.add_development_dependency "rake"
|
31
|
+
spec.add_development_dependency "rspec"
|
32
|
+
spec.add_development_dependency "rspec_junit_formatter"
|
33
|
+
spec.add_development_dependency "sdoc"
|
34
|
+
spec.add_development_dependency "test-tracer", "~> 1.0", ">= 1.2.1"
|
35
|
+
spec.add_development_dependency "tracing-matchers", "~> 1.0", ">= 1.3.0"
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,217 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sidekiq-instrumentation
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- iaintshine
|
8
|
+
- Doximity
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2020-05-27 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: opentracing
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.3.1
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.3.1
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: sidekiq
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: bundler
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '1.17'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.17'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: dox-style
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: rake
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: rspec
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: rspec_junit_formatter
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: sdoc
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: test-tracer
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '1.0'
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: 1.2.1
|
136
|
+
type: :development
|
137
|
+
prerelease: false
|
138
|
+
version_requirements: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - "~>"
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '1.0'
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 1.2.1
|
146
|
+
- !ruby/object:Gem::Dependency
|
147
|
+
name: tracing-matchers
|
148
|
+
requirement: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.0'
|
153
|
+
- - ">="
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: 1.3.0
|
156
|
+
type: :development
|
157
|
+
prerelease: false
|
158
|
+
version_requirements: !ruby/object:Gem::Requirement
|
159
|
+
requirements:
|
160
|
+
- - "~>"
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '1.0'
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: 1.3.0
|
166
|
+
description: ''
|
167
|
+
email:
|
168
|
+
- ops@doximity.com
|
169
|
+
executables: []
|
170
|
+
extensions: []
|
171
|
+
extra_rdoc_files: []
|
172
|
+
files:
|
173
|
+
- ".circleci/config.yml"
|
174
|
+
- ".gitignore"
|
175
|
+
- ".rspec"
|
176
|
+
- ".rubocop.yml"
|
177
|
+
- ".ruby-version"
|
178
|
+
- ".travis.yml"
|
179
|
+
- CHANGELOG.md
|
180
|
+
- CODE_OF_CONDUCT.md
|
181
|
+
- Gemfile
|
182
|
+
- Gemfile.lock
|
183
|
+
- LICENSE
|
184
|
+
- README.md
|
185
|
+
- Rakefile
|
186
|
+
- lib/sidekiq/tracer.rb
|
187
|
+
- lib/sidekiq/tracer/client_middleware.rb
|
188
|
+
- lib/sidekiq/tracer/commons.rb
|
189
|
+
- lib/sidekiq/tracer/constants.rb
|
190
|
+
- lib/sidekiq/tracer/server_middleware.rb
|
191
|
+
- lib/sidekiq/tracer/version.rb
|
192
|
+
- lib/sidekiq_instrumentation.rb
|
193
|
+
- sidekiq-instrumentation.gemspec
|
194
|
+
homepage: https://github.com/doximity/ruby-sidekiq-tracer
|
195
|
+
licenses:
|
196
|
+
- Apache-2.0
|
197
|
+
metadata: {}
|
198
|
+
post_install_message:
|
199
|
+
rdoc_options: []
|
200
|
+
require_paths:
|
201
|
+
- lib
|
202
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0'
|
207
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
208
|
+
requirements:
|
209
|
+
- - ">="
|
210
|
+
- !ruby/object:Gem::Version
|
211
|
+
version: '0'
|
212
|
+
requirements: []
|
213
|
+
rubygems_version: 3.1.2
|
214
|
+
signing_key:
|
215
|
+
specification_version: 4
|
216
|
+
summary: OpenTracing instrumentation for Sidekiq.
|
217
|
+
test_files: []
|