honeycomb-beeline 2.1.2 → 2.4.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/.circleci/bundler_version.sh +4 -0
- data/.circleci/config.yml +102 -43
- data/.editorconfig +12 -0
- data/.github/dependabot.yml +13 -0
- data/.github/workflows/apply-labels.yml +16 -0
- data/.gitignore +1 -0
- data/.rspec +4 -0
- data/.rubocop.yml +6 -0
- data/CHANGELOG.md +104 -0
- data/Gemfile.lock +15 -5
- data/README.md +8 -0
- data/UPGRADING.md +10 -0
- data/honeycomb-beeline.gemspec +2 -0
- data/lib/honeycomb-beeline.rb +2 -1
- data/lib/honeycomb/beeline/version.rb +1 -1
- data/lib/honeycomb/client.rb +10 -0
- data/lib/honeycomb/configuration.rb +23 -0
- data/lib/honeycomb/integrations/faraday.rb +3 -1
- data/lib/honeycomb/integrations/rack.rb +17 -7
- data/lib/honeycomb/integrations/rails.rb +10 -0
- data/lib/honeycomb/integrations/redis.rb +103 -94
- data/lib/honeycomb/propagation.rb +4 -51
- data/lib/honeycomb/propagation/aws.rb +85 -0
- data/lib/honeycomb/propagation/context.rb +11 -0
- data/lib/honeycomb/propagation/honeycomb.rb +96 -0
- data/lib/honeycomb/propagation/w3c.rb +79 -0
- data/lib/honeycomb/span.rb +32 -4
- data/lib/honeycomb/trace.rb +14 -1
- metadata +39 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honeycomb-beeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Holman
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: libhoney
|
@@ -72,6 +72,20 @@ dependencies:
|
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: codecov
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
75
89
|
- !ruby/object:Gem::Dependency
|
76
90
|
name: overcommit
|
77
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,6 +156,20 @@ dependencies:
|
|
142
156
|
- - "~>"
|
143
157
|
- !ruby/object:Gem::Version
|
144
158
|
version: '3.0'
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: rspec_junit_formatter
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
145
173
|
- !ruby/object:Gem::Dependency
|
146
174
|
name: rubocop
|
147
175
|
requirement: !ruby/object:Gem::Requirement
|
@@ -222,13 +250,17 @@ files:
|
|
222
250
|
- ".circleci/bundler_version.sh"
|
223
251
|
- ".circleci/config.yml"
|
224
252
|
- ".circleci/setup-rubygems.sh"
|
253
|
+
- ".editorconfig"
|
225
254
|
- ".github/CODEOWNERS"
|
255
|
+
- ".github/dependabot.yml"
|
256
|
+
- ".github/workflows/apply-labels.yml"
|
226
257
|
- ".gitignore"
|
227
258
|
- ".overcommit.yml"
|
228
259
|
- ".rspec"
|
229
260
|
- ".rubocop.yml"
|
230
261
|
- ".ruby-version"
|
231
262
|
- Appraisals
|
263
|
+
- CHANGELOG.md
|
232
264
|
- CODE_OF_CONDUCT.md
|
233
265
|
- CONTRIBUTORS.md
|
234
266
|
- Gemfile
|
@@ -259,6 +291,10 @@ files:
|
|
259
291
|
- lib/honeycomb/integrations/sinatra.rb
|
260
292
|
- lib/honeycomb/integrations/warden.rb
|
261
293
|
- lib/honeycomb/propagation.rb
|
294
|
+
- lib/honeycomb/propagation/aws.rb
|
295
|
+
- lib/honeycomb/propagation/context.rb
|
296
|
+
- lib/honeycomb/propagation/honeycomb.rb
|
297
|
+
- lib/honeycomb/propagation/w3c.rb
|
262
298
|
- lib/honeycomb/rollup_fields.rb
|
263
299
|
- lib/honeycomb/span.rb
|
264
300
|
- lib/honeycomb/trace.rb
|
@@ -284,7 +320,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
320
|
- !ruby/object:Gem::Version
|
285
321
|
version: '0'
|
286
322
|
requirements: []
|
287
|
-
rubygems_version: 3.0.3
|
323
|
+
rubygems_version: 3.0.3.1
|
288
324
|
signing_key:
|
289
325
|
specification_version: 4
|
290
326
|
summary: Instrument your Ruby apps with Honeycomb
|