We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all
aws_sdk
Description of the bug
Adding just the following gems to my app:
gem "opentelemetry-api" gem "opentelemetry-sdk" gem "opentelemetry-exporter-otlp" gem "opentelemetry-instrumentation-all"
and attempting to initialize OTEL:
require 'opentelemetry/sdk' require 'opentelemetry/exporter/otlp' require 'opentelemetry/instrumentation/all' require 'rubygems' OpenTelemetry::SDK.configure do |c| c.use_all() end
results in the following error:
/ruby/3.0.0/rubygems/core_ext/kernel_require.rb>:85:in `require': cannot load such file -- opentelemetry-instrumentation-aws_sdk (LoadError)
Adding this to the app Gemfile fixes the error:
gem "opentelemetry-instrumentation-aws_sdk"
Share details about your runtime
Operating system details: MacOS 11.6.1 RUBY_ENGINE: "ruby" RUBY_VERSION: "2.7.2", "3.0.0" RUBY_DESCRIPTION:
The text was updated successfully, but these errors were encountered:
cc: @YanivD
Sorry, something went wrong.
@arielvalentin thanks for the mention! Created PR #1054 to resolve this issue
Thank you @YanivD for quick turn around time ✨
Could we get a release of the gem? Since there hasn't been one since #1054 was merged, new users (like me 😁) are still encountering this error.
Successfully merging a pull request may close this issue.
Description of the bug
Adding just the following gems to my app:
and attempting to initialize OTEL:
results in the following error:
Adding this to the app Gemfile fixes the error:
Share details about your runtime
Operating system details: MacOS 11.6.1
RUBY_ENGINE: "ruby"
RUBY_VERSION: "2.7.2", "3.0.0"
RUBY_DESCRIPTION:
The text was updated successfully, but these errors were encountered: