Skip to content

Commit 16585ab

Browse files
committed
Update the OpenTelemetry SDK version to 1.35.0 and remove jaeger exporter
1 parent 0f6bf98 commit 16585ab

File tree

24 files changed

+71
-368
lines changed

24 files changed

+71
-368
lines changed

dependencyManagement/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val dependencyVersions = hashMapOf<String, String>()
88
rootProject.extra["versions"] = dependencyVersions
99

1010
// this line is managed by .github/scripts/update-sdk-version.sh
11-
val otelSdkVersion = "1.34.1"
11+
val otelSdkVersion = "1.35.0"
1212
val otelSdkAlphaVersion = otelSdkVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
1313

1414
// Need both BOM and groovy jars
@@ -98,6 +98,7 @@ val DEPENDENCIES = listOf(
9898
"io.netty:netty:3.10.6.Final",
9999
"io.opentelemetry.contrib:opentelemetry-aws-xray-propagator:1.28.0-alpha",
100100
"io.opentelemetry.proto:opentelemetry-proto:1.0.0-alpha",
101+
"io.opentelemetry:opentelemetry-extension-annotations:1.18.0", // deprecated, no longer part of bom
101102
"org.assertj:assertj-core:3.25.3",
102103
"org.awaitility:awaitility:4.2.0",
103104
"com.google.code.findbugs:annotations:3.0.1u2",

examples/distro/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ subprojects {
2727
ext {
2828
versions = [
2929
// this line is managed by .github/scripts/update-sdk-version.sh
30-
opentelemetrySdk : "1.34.1",
30+
opentelemetrySdk : "1.35.0",
3131

3232
// these lines are managed by .github/scripts/update-version.sh
3333
opentelemetryJavaagent : "1.32.1",

examples/extension/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ version '1.0'
2323
ext {
2424
versions = [
2525
// this line is managed by .github/scripts/update-sdk-version.sh
26-
opentelemetrySdk : "1.34.1",
26+
opentelemetrySdk : "1.35.0",
2727

2828
// these lines are managed by .github/scripts/update-version.sh
2929
opentelemetryJavaagent : "1.32.1",

instrumentation/spring/spring-boot-autoconfigure/README.md

+2-11
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ For Maven, add to your `pom.xml` dependencies:
7474
```xml
7575
<dependencies>
7676
<!-- opentelemetry exporters-->
77-
<dependency>
78-
<groupId>io.opentelemetry</groupId>
79-
<artifactId>opentelemetry-exporter-jaeger</artifactId>
80-
<version>OPENTELEMETRY_VERSION</version>
81-
</dependency>
8277
<dependency>
8378
<groupId>io.opentelemetry</groupId>
8479
<artifactId>opentelemetry-exporter-zipkin</artifactId>
@@ -129,7 +124,6 @@ For Gradle, add to your dependencies:
129124

130125
```groovy
131126
//opentelemetry exporter
132-
implementation("io.opentelemetry:opentelemetry-exporter-jaeger:OPENTELEMETRY_VERSION")
133127
implementation("io.opentelemetry:opentelemetry-exporter-zipkin:OPENTELEMETRY_VERSION")
134128
implementation("io.opentelemetry:opentelemetry-exporter-otlp:OPENTELEMETRY_VERSION")
135129
@@ -384,7 +378,7 @@ public class OpenTelemetryConfig {}
384378

385379
#### Exporter Configurations
386380

387-
This package provides auto configurations for [OTLP](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/otlp), [Jaeger](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/jaeger), [Zipkin](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/zipkin), and [Logging](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/logging) Span Exporters.
381+
This package provides auto configurations for [OTLP](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/otlp), [Zipkin](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/zipkin), and [Logging](https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/logging) Span Exporters.
388382

389383
If an exporter is present in the classpath during runtime and a spring bean of the exporter is missing from the spring application context. An exporter bean is initialized and added to a simple span processor in the active tracer provider. Check out the implementation [here](./src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/OpenTelemetryAutoConfiguration.java).
390384

@@ -399,7 +393,6 @@ If an exporter is present in the classpath during runtime and a spring bean of t
399393
| spring-webflux | otel.instrumentation.spring-webflux.enabled | `true` | WebClient |
400394
| @WithSpan | otel.instrumentation.annotations.enabled | `true` | WithSpan, Aspect |
401395
| Otlp Exporter | otel.exporter.otlp.enabled | `true` | OtlpGrpcSpanExporter |
402-
| Jaeger Exporter | otel.exporter.jaeger.enabled | `true` | JaegerGrpcSpanExporter |
403396
| Zipkin Exporter | otel.exporter.zipkin.enabled | `true` | ZipkinSpanExporter |
404397
| Logging Exporter | otel.exporter.logging.enabled | `true` | LoggingSpanExporter |
405398

@@ -431,9 +424,7 @@ otel.springboot.resource.attributes.xyz=foo
431424
| --------------- | ----------------------------- | ------------------------------------ |
432425
| Otlp Exporter | otel.exporter.otlp.endpoint | `localhost:4317` |
433426
| | otel.exporter.otlp.timeout | `1s` |
434-
| Jaeger Exporter | otel.exporter.jaeger.endpoint | `localhost:14250` |
435-
| | otel.exporter.jaeger.timeout | `1s` |
436-
| Zipkin Exporter | otel.exporter.jaeger.endpoint | `http://localhost:9411/api/v2/spans` |
427+
| Zipkin Exporter | otel.exporter.zipkin.endpoint | `http://localhost:9411/api/v2/spans` |
437428

438429
##### Tracer Properties
439430

instrumentation/spring/spring-boot-autoconfigure/build.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ dependencies {
4242
compileOnly("io.opentelemetry:opentelemetry-extension-trace-propagators")
4343
compileOnly("io.opentelemetry.contrib:opentelemetry-aws-xray-propagator")
4444
compileOnly("io.opentelemetry:opentelemetry-exporter-logging")
45-
compileOnly("io.opentelemetry:opentelemetry-exporter-jaeger")
4645
compileOnly("io.opentelemetry:opentelemetry-exporter-otlp")
4746
compileOnly("io.opentelemetry:opentelemetry-exporter-zipkin")
4847
compileOnly(project(":instrumentation-annotations"))
@@ -67,7 +66,6 @@ dependencies {
6766
testImplementation("io.opentelemetry:opentelemetry-extension-trace-propagators")
6867
testImplementation("io.opentelemetry.contrib:opentelemetry-aws-xray-propagator")
6968
testImplementation("io.opentelemetry:opentelemetry-exporter-logging")
70-
testImplementation("io.opentelemetry:opentelemetry-exporter-jaeger")
7169
testImplementation("io.opentelemetry:opentelemetry-exporter-otlp")
7270
testImplementation("io.opentelemetry:opentelemetry-exporter-zipkin")
7371
testImplementation(project(":instrumentation-annotations"))

instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/exporters/jaeger/JaegerSpanExporterAutoConfiguration.java

-46
This file was deleted.

instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/exporters/jaeger/JaegerSpanExporterProperties.java

-54
This file was deleted.

instrumentation/spring/spring-boot-autoconfigure/src/main/java/io/opentelemetry/instrumentation/spring/autoconfigure/propagators/CompositeTextMapPropagatorFactory.java

-8
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,6 @@ static TextMapPropagator getCompositeTextMapPropagator(
5151
.getIfAvailable(B3Propagator::injectingMultiHeaders));
5252
}
5353
break;
54-
case "jaeger":
55-
if (isOnClasspath("io.opentelemetry.extension.trace.propagation.JaegerPropagator")) {
56-
propagators.add(
57-
beanFactory
58-
.getBeanProvider(JaegerPropagator.class)
59-
.getIfAvailable(JaegerPropagator::getInstance));
60-
}
61-
break;
6254
case "ottrace":
6355
if (isOnClasspath("io.opentelemetry.extension.trace.propagation.OtTracerPropagator")) {
6456
propagators.add(

instrumentation/spring/spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
22
io.opentelemetry.instrumentation.spring.autoconfigure.OpenTelemetryAutoConfiguration,\
3-
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.jaeger.JaegerSpanExporterAutoConfiguration,\
43
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.logging.LoggingSpanExporterAutoConfiguration,\
54
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.otlp.OtlpMetricExporterAutoConfiguration,\
65
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.otlp.OtlpSpanExporterAutoConfiguration,\

instrumentation/spring/spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
io.opentelemetry.instrumentation.spring.autoconfigure.OpenTelemetryAutoConfiguration
2-
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.jaeger.JaegerSpanExporterAutoConfiguration
32
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.logging.LoggingSpanExporterAutoConfiguration
43
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.otlp.OtlpLoggerExporterAutoConfiguration
54
io.opentelemetry.instrumentation.spring.autoconfigure.exporters.otlp.OtlpMetricExporterAutoConfiguration

instrumentation/spring/spring-boot-autoconfigure/src/test/java/io/opentelemetry/instrumentation/spring/autoconfigure/exporters/jaeger/JaegerSpanExporterAutoConfigurationTest.java

-82
This file was deleted.

instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For Maven add the following to your `pom.xml`:
2525
</dependency>
2626

2727
<!-- OpenTelemetry exporter -->
28-
<!-- replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
28+
<!-- replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/..) -->
2929
<dependency>
3030
<groupId>io.opentelemetry</groupId>
3131
<artifactId>opentelemetry-exporter-logging</artifactId>
@@ -51,7 +51,7 @@ For Gradle add the following to your dependencies:
5151
implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webmvc-5.3:OPENTELEMETRY_VERSION")
5252
5353
// OpenTelemetry exporter
54-
// replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/jaeger/..)
54+
// replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/..)
5555
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
5656
5757
// required to instrument Spring WebMVC

instrumentation/spring/spring-webmvc/spring-webmvc-6.0/library/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For Maven add the following to your `pom.xml`:
2525
</dependency>
2626

2727
<!-- OpenTelemetry exporter -->
28-
<!-- replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
28+
<!-- replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/..) -->
2929
<dependency>
3030
<groupId>io.opentelemetry</groupId>
3131
<artifactId>opentelemetry-exporter-logging</artifactId>
@@ -51,7 +51,7 @@ For Gradle add the following to your dependencies:
5151
implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webmvc-6.0:OPENTELEMETRY_VERSION")
5252
5353
// OpenTelemetry exporter
54-
// replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/jaeger/..)
54+
// replace this default exporter with your OpenTelemetry exporter (ex. otlp/zipkin/..)
5555
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
5656
5757
// required to instrument Spring WebMVC

instrumentation/spring/starters/jaeger-spring-boot-starter/README.md

-34
This file was deleted.

instrumentation/spring/starters/jaeger-spring-boot-starter/build.gradle.kts

-15
This file was deleted.

0 commit comments

Comments
 (0)