Skip to content

Commit cc1602e

Browse files
Merge branch 'main' into dependabot/github_actions/github/codeql-action-3.28.17
2 parents 40db277 + ffa9e49 commit cc1602e

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

instrumentation/action_pack/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History: opentelemetry-instrumentation-action_pack
22

3+
### v0.12.1 / 2025-05-07
4+
5+
* FIXED: Account for `nil` routes
6+
37
### v0.12.0 / 2025-02-04
48

59
* ADDED: Strip Rails `(.:format)` suffix from `http.route`

instrumentation/action_pack/lib/opentelemetry/instrumentation/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module ActionPack
10-
VERSION = '0.12.0'
10+
VERSION = '0.12.1'
1111
end
1212
end
1313
end

instrumentation/aws_sdk/example/Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
source 'https://rubygems.org'
44

5-
gem 'aws-sdk'
5+
gem 'aws-sdk-core', '~> 3.203.0'
6+
gem 'aws-sdk-sns', '~> 1.83.0'
67
gem 'opentelemetry-api'
7-
gem 'opentelemetry-instrumentation-aws_sdk'
8+
gem 'opentelemetry-instrumentation-aws_sdk', '~> 0.7.0'
89
gem 'opentelemetry-sdk'
10+
# AWS SDK core needs an XML library
11+
gem 'rexml'

instrumentation/aws_sdk/example/trace_demonstration.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
ENV['OTEL_TRACES_EXPORTER'] ||= 'console'
1414

1515
OpenTelemetry::SDK.configure do |c|
16-
c.use 'OpenTelemetry::Instrumentation::AwsSdk', suppress_internal_instrumentation: false
16+
c.use 'OpenTelemetry::Instrumentation::AwsSdk'
1717
end
1818

19-
sns = Aws::SNS::Client.new
19+
# For more examples and options, see also https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/observability.html
20+
otel_provider = Aws::Telemetry::OTelProvider.new
21+
sns = Aws::SNS::Client.new(telemetry_provider: otel_provider)
2022
sns.publish message: 'ruby sending message to sns'

resources/aws/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release History: opentelemetry-resource-detector-aws
22

3+
### v0.3.0 / 2025-05-07
4+
5+
* ADDED: Contribute aws lambda resource detector
6+
* FIXED: Add missing semantic conventions require in AWS resource detectors
7+
38
### v0.2.0 / 2025-04-29
49

510
* ADDED: Contribute aws ecs resource detector

resources/aws/lib/opentelemetry/resource/detector/aws/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module OpenTelemetry
88
module Resource
99
module Detector
1010
module AWS
11-
VERSION = '0.2.0'
11+
VERSION = '0.3.0'
1212
end
1313
end
1414
end

0 commit comments

Comments
 (0)