opentelemetry-instrumentation-excon 0.7.0 → 0.12.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 +26 -0
- data/LICENSE +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 +2 -2
- data/lib/opentelemetry/instrumentation/excon/version.rb +2 -2
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7031a5dd36c227820262fa31871bd78940e7bb4f41dd3bfc6ebcc2dcb47aee5
|
4
|
+
data.tar.gz: 5c4ff34780de766487e9b4bf9d39163544b0efeac37b376bf3a0cd46dc556592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f207ff09bb19606388fb76a221682ab6586ea1a301aa0f163370b1cea38bf5bf00b139b52444e05568eedeedb998c95bf743f6724daa3f45eca00f20d6635823
|
7
|
+
data.tar.gz: d1ebdb911bbc9909e18e1fb77f738fbe59ee86fecef4970e3e2a122f32c4114e305b53e44ea292ac68668a1bf1f7ef46fe0b31c20abb4128947767343a0aa0c3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-excon
|
2
2
|
|
3
|
+
### v0.12.0 / 2020-12-24
|
4
|
+
|
5
|
+
* (No significant changes)
|
6
|
+
|
7
|
+
### v0.11.0 / 2020-12-11
|
8
|
+
|
9
|
+
* FIXED: Copyright comments to not reference year
|
10
|
+
|
11
|
+
### v0.10.0 / 2020-12-03
|
12
|
+
|
13
|
+
* (No significant changes)
|
14
|
+
|
15
|
+
### v0.9.0 / 2020-11-27
|
16
|
+
|
17
|
+
* BREAKING CHANGE: Add timeout for force_flush and shutdown
|
18
|
+
|
19
|
+
* ADDED: Add timeout for force_flush and shutdown
|
20
|
+
|
21
|
+
### v0.8.0 / 2020-10-27
|
22
|
+
|
23
|
+
* BREAKING CHANGE: Move context/span methods to Trace module
|
24
|
+
* BREAKING CHANGE: Remove 'canonical' from status codes
|
25
|
+
|
26
|
+
* FIXED: Move context/span methods to Trace module
|
27
|
+
* FIXED: Remove 'canonical' from status codes
|
28
|
+
|
3
29
|
### v0.7.0 / 2020-10-07
|
4
30
|
|
5
31
|
* DOCS: Standardize toplevel docs structure and readme
|
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.
|
@@ -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
|
|
@@ -38,7 +38,7 @@ module OpenTelemetry
|
|
38
38
|
kind: :client
|
39
39
|
).tap do |span|
|
40
40
|
datum[:otel_span] = span
|
41
|
-
|
41
|
+
OpenTelemetry::Trace.with_span(span) do
|
42
42
|
OpenTelemetry.propagation.http.inject(datum[:headers])
|
43
43
|
end
|
44
44
|
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.12.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.12.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: 2020-
|
11
|
+
date: 2020-12-24 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.12.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.12.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: appraisal
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -184,7 +184,11 @@ files:
|
|
184
184
|
homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
185
185
|
licenses:
|
186
186
|
- Apache-2.0
|
187
|
-
metadata:
|
187
|
+
metadata:
|
188
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-excon/v0.12.0/file.CHANGELOG.html
|
189
|
+
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/master/instrumentation/excon
|
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.12.0
|
188
192
|
post_install_message:
|
189
193
|
rdoc_options: []
|
190
194
|
require_paths:
|