opentelemetry-instrumentation-aws_sdk 0.10.0 → 0.11.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d8d6a60aa5e88f724d0603667942f03ae96a736baf3ab09c6e80e9184a8b966
|
4
|
+
data.tar.gz: 22d7c6114027fb52442485ce2ed69dcdec39b04bda7744af03036730533b923e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68443901421bc079239cf84756ff7270b0c04b64ffe11f11df701b5cab0e842b5060ba377e466cb68be1b40bff691a324c9122756b467717cd425a1846631914
|
7
|
+
data.tar.gz: 7341155bc2e033c56dd705e4d40cdaa811fb976b2aab23623739157d7215604b061c68c07fbd1a8b0acc6e7fef9bf3803f6bbc6989ad0dac85454a839077b5b7
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -38,8 +38,8 @@ This instrumentation offers the following configuration options:
|
|
38
38
|
to Message Attributes for SQS/SNS messages.
|
39
39
|
* `:enable_internal_instrumentation` (default: `false`): When set to `true`, any spans with
|
40
40
|
span kind of `internal` are traced.
|
41
|
-
* `:suppress_internal_instrumentation`: **Deprecated**. This configuration has been
|
42
|
-
deprecated in
|
41
|
+
* `:suppress_internal_instrumentation`: **Deprecated**. This configuration has been
|
42
|
+
deprecated in favor of `:enable_internal_instrumentation`
|
43
43
|
|
44
44
|
## Integration with SDK V3's Telemetry support
|
45
45
|
AWS SDK for Ruby V3 added support for Observability which includes a new configuration,
|
@@ -26,9 +26,9 @@ module OpenTelemetry
|
|
26
26
|
# - `true` - Internal spans are traced.
|
27
27
|
#
|
28
28
|
# ### `:suppress_internal_instrumentation` (deprecated)
|
29
|
-
# This configuration has been deprecated in
|
29
|
+
# This configuration has been deprecated in favor of `:enable_internal_instrumentation`
|
30
30
|
#
|
31
|
-
# @example An explicit default
|
31
|
+
# @example An explicit default configuration
|
32
32
|
# OpenTelemetry::SDK.configure do |c|
|
33
33
|
# c.use 'OpenTelemetry::Instrumentation::AwsSdk', {
|
34
34
|
# inject_messaging_context: false,
|
@@ -105,7 +105,7 @@ module OpenTelemetry
|
|
105
105
|
|
106
106
|
# Patches AWS SDK V3's telemetry plugin for integration
|
107
107
|
# This patch supports configuration set by this gem and
|
108
|
-
# additional span attributes that
|
108
|
+
# additional span attributes that were not provided by the plugin
|
109
109
|
def patch_telemetry_plugin
|
110
110
|
::Aws::Plugins::Telemetry::Handler.prepend(Patches::Handler)
|
111
111
|
end
|
@@ -125,7 +125,7 @@ module OpenTelemetry
|
|
125
125
|
|
126
126
|
# This check does the following:
|
127
127
|
# 1 - Checks if the service client is autoload or not
|
128
|
-
# 2 - Validates whether
|
128
|
+
# 2 - Validates whether it is a service client
|
129
129
|
# note that Seahorse::Client::Base is a superclass for V3 clients
|
130
130
|
# but for V2, it is Aws::Client
|
131
131
|
# rubocop:disable Style/MultipleComparison
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-aws_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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: 2025-10-
|
11
|
+
date: 2025-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-instrumentation-base
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.25'
|
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.25'
|
27
27
|
description: AWS SDK instrumentation for the OpenTelemetry framework
|
28
28
|
email:
|
29
29
|
- cncf-opentelemetry-contributors@lists.cncf.io
|
@@ -49,10 +49,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby-contrib
|
|
49
49
|
licenses:
|
50
50
|
- Apache-2.0
|
51
51
|
metadata:
|
52
|
-
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-aws_sdk/0.
|
52
|
+
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-aws_sdk/0.11.0/file/CHANGELOG.md
|
53
53
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/aws_sdk
|
54
54
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues
|
55
|
-
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-aws_sdk/0.
|
55
|
+
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-aws_sdk/0.11.0
|
56
56
|
post_install_message:
|
57
57
|
rdoc_options: []
|
58
58
|
require_paths:
|
@@ -61,14 +61,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
61
|
requirements:
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version: '3.
|
64
|
+
version: '3.2'
|
65
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
requirements: []
|
71
|
-
rubygems_version: 3.
|
71
|
+
rubygems_version: 3.4.19
|
72
72
|
signing_key:
|
73
73
|
specification_version: 4
|
74
74
|
summary: AWS SDK instrumentation for the OpenTelemetry framework
|