opentelemetry-instrumentation-excon 0.10.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/lib/opentelemetry-instrumentation-excon.rb +1 -1
- data/lib/opentelemetry/instrumentation.rb +1 -1
- data/lib/opentelemetry/instrumentation/excon.rb +1 -1
- data/lib/opentelemetry/instrumentation/excon/instrumentation.rb +1 -1
- data/lib/opentelemetry/instrumentation/excon/middlewares/tracer_middleware.rb +3 -3
- data/lib/opentelemetry/instrumentation/excon/version.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08c192904636f3681d675314fe3565c7dfbf020ba505926676c64cf6743844e5'
|
4
|
+
data.tar.gz: 2044bea16ad5c74be7c1df846f229a2f319eb44c010f5c965549fcf49ccb7380
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca70da849e36ac2c00b3e6818fe5c3c7e1d05f1a6f3a5b8fde5d7c76ec8b9c23b4451a84cb4701bd73838806029678705e16ff4488c11edf97a72fa85632dafa
|
7
|
+
data.tar.gz: 7552c4e2f9c411d193d53ffd959dbed409fcb4365c48f4b2d7d9255b569504990c6c218c94f1dd086d0a5b46226aa028638b3d2acff26844e4335ef855640534
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-excon
|
2
2
|
|
3
|
+
### v0.15.0 / 2021-02-18
|
4
|
+
|
5
|
+
* (No significant changes)
|
6
|
+
|
7
|
+
### v0.14.0 / 2021-02-03
|
8
|
+
|
9
|
+
* BREAKING CHANGE: Replace getter and setter callables and remove rack specific propagators
|
10
|
+
|
11
|
+
* ADDED: Replace getter and setter callables and remove rack specific propagators
|
12
|
+
|
13
|
+
### v0.13.0 / 2021-01-29
|
14
|
+
|
15
|
+
* (No significant changes)
|
16
|
+
|
17
|
+
### v0.12.0 / 2020-12-24
|
18
|
+
|
19
|
+
* (No significant changes)
|
20
|
+
|
21
|
+
### v0.11.0 / 2020-12-11
|
22
|
+
|
23
|
+
* FIXED: Copyright comments to not reference year
|
24
|
+
|
3
25
|
### v0.10.0 / 2020-12-03
|
4
26
|
|
5
27
|
* (No significant changes)
|
data/LICENSE
CHANGED
@@ -186,7 +186,7 @@
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
187
187
|
identification within third-party archives.
|
188
188
|
|
189
|
-
Copyright
|
189
|
+
Copyright The OpenTelemetry Authors
|
190
190
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
192
192
|
you may not use this file except in compliance with the License.
|
data/README.md
CHANGED
@@ -44,7 +44,7 @@ The `opentelemetry-instrumentation-all` gem is distributed under the Apache 2.0
|
|
44
44
|
[excon-home]: https://github.com/excon/excon
|
45
45
|
[bundler-home]: https://bundler.io
|
46
46
|
[repo-github]: https://github.com/open-telemetry/opentelemetry-ruby
|
47
|
-
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/
|
47
|
+
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/main/LICENSE
|
48
48
|
[ruby-sig]: https://github.com/open-telemetry/community#ruby-sig
|
49
49
|
[community-meetings]: https://github.com/open-telemetry/community#community-meetings
|
50
50
|
[ruby-gitter]: https://gitter.im/open-telemetry/opentelemetry-ruby
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright
|
3
|
+
# Copyright The OpenTelemetry Authors
|
4
4
|
#
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
6
6
|
|
@@ -22,7 +22,7 @@ module OpenTelemetry
|
|
22
22
|
trace: 'TRACE'
|
23
23
|
}.freeze
|
24
24
|
|
25
|
-
def request_call(datum) # rubocop:disable Metrics/
|
25
|
+
def request_call(datum) # rubocop:disable Metrics/MethodLength
|
26
26
|
begin
|
27
27
|
unless datum.key?(:otel_span)
|
28
28
|
http_method = HTTP_METHODS_SYMBOL_TO_STRING[datum[:method]]
|
@@ -39,7 +39,7 @@ module OpenTelemetry
|
|
39
39
|
).tap do |span|
|
40
40
|
datum[:otel_span] = span
|
41
41
|
OpenTelemetry::Trace.with_span(span) do
|
42
|
-
OpenTelemetry.propagation.
|
42
|
+
OpenTelemetry.propagation.inject(datum[:headers])
|
43
43
|
end
|
44
44
|
end
|
45
45
|
end
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright
|
3
|
+
# Copyright The OpenTelemetry Authors
|
4
4
|
#
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
6
6
|
|
7
7
|
module OpenTelemetry
|
8
8
|
module Instrumentation
|
9
9
|
module Excon
|
10
|
-
VERSION = '0.
|
10
|
+
VERSION = '0.15.0'
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-excon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTelemetry Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.15.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: appraisal
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -185,10 +185,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
185
185
|
licenses:
|
186
186
|
- Apache-2.0
|
187
187
|
metadata:
|
188
|
-
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-excon/v0.
|
189
|
-
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/
|
188
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-excon/v0.15.0/file.CHANGELOG.html
|
189
|
+
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/instrumentation/excon
|
190
190
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
191
|
-
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-excon/v0.
|
191
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-excon/v0.15.0
|
192
192
|
post_install_message:
|
193
193
|
rdoc_options: []
|
194
194
|
require_paths:
|