-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
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
feat: add sem_conv opt in #1166
base: main
Are you sure you want to change the base?
feat: add sem_conv opt in #1166
Conversation
instrumentation/http/test/instrumentation/http/patches/client_test.rb
Outdated
Show resolved
Hide resolved
instrumentation/http/lib/opentelemetry/instrumentation/http/patches/client.rb
Show resolved
Hide resolved
@@ -182,5 +186,45 @@ | |||
) | |||
end | |||
end | |||
|
|||
describe 'Semantic conventions http stability' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I get that we're blocked to run the tests on the CI right now without a lot of temporary code since this relies on work that is not yet part of the semantic conventions gem.
Do you have anything that demonstrates the tests passing that we could use for now? Maybe a minitest screenshot?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Kayla Reopelle <[email protected]>
👋 This pull request has been marked as stale because it has been open with no activity. You can: comment on the issue or remove the stale label to hold stale off for a while, add the |
Blocked by open-telemetry/opentelemetry-ruby#1728
Brings in
OpenTelemetry::SemanticConventions::StabilityMode
for HTTP attributes. HTTP instrumentation should set the attribute name based on which semantic version a user sets using the environment variableOTEL_SEMCONV_STABILITY_OPT_IN
(spec). That information is read byOpenTelemetry::SemanticConventions::StabilityMode
to determine which attribute to send.