-
Notifications
You must be signed in to change notification settings - Fork 15
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
update otel to 1.32.0 #400
Conversation
@@ -54,14 +54,11 @@ subprojects { | |||
extra.set("versions", mapOf( | |||
// when updating these values, some values must also be updated in buildSrc as this map | |||
// cannot be accessed there | |||
"opentelemetry" to "1.24.0", | |||
"opentelemetry_semconv" to "1.24.0-alpha", |
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.
io.opentelemetry:opentelemetry-semconv
was used before which wasn't present in bom of opentelmetry instrumentation, but io.opentelemetry.semconv:opentelemetry-semconv
was present.
https://repo.maven.apache.org/maven2/io/opentelemetry/instrumentation/opentelemetry-instrumentation-bom-alpha/1.32.0-alpha/opentelemetry-instrumentation-bom-alpha-1.32.0-alpha.pom
<dependency>
<groupId>io.opentelemetry.semconv</groupId>
<artifactId>opentelemetry-semconv</artifactId>
<version>1.21.0-alpha</version>
</dependency>
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.
they stopped publishing io.opentelemetry:opentelemetry-semconv
and suggest to use the new one
No description provided.