Skip to content

Commit 7444fda

Browse files
committed
fix
1 parent 5abc657 commit 7444fda

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

instrumentation/spring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ This package streamlines the manual instrumentation process of OpenTelemetry for
1717
| `otel.instrumentation.spring-scheduling.experimental-span-attributes` | Boolean | `false` | Enable the capture of experimental span attributes for Spring Scheduling version 3.1. |
1818
| `otel.instrumentation.spring-webflux.experimental-span-attributes` | Boolean | `false` | Enable the capture of experimental span attributes for Spring WebFlux version 5.0. |
1919
| `otel.instrumentation.spring-webmvc.experimental-span-attributes` | Boolean | `false` | Enable the capture of experimental span attributes for Spring Web MVC version 3.1. |
20-
| `otel.instrumentation.messaging.experimental.receive-telemetry.enabled` | Boolean | `false` | Enables experimental receive telemetry for Spring JMS instrumentation. |
20+
| `otel.instrumentation.messaging.experimental.receive-telemetry.enabled` | Boolean | `false` | Enables experimental receive telemetry, which will cause consumers to start a new trace, with only a span link connecting it to the producer trace. |
2121
| `otel.instrumentation.kafka.experimental-span-attributes` | Boolean | `false` | Enable the capture of experimental span attributes for Spring Kafka version 2.7. |

instrumentation/spring/spring-cloud-aws-3.0/javaagent/build.gradle.kts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,3 @@ dependencies {
2626
otelJava {
2727
minJavaVersionSupported.set(JavaVersion.VERSION_17)
2828
}
29-
30-
tasks {
31-
test {
32-
// only generates spans from io.opentelemetry.aws-sdk-2.2 scope
33-
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
34-
systemProperty("collectSpans", true)
35-
}
36-
}

instrumentation/spring/spring-integration-4.1/javaagent/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tasks {
4848
include("**/SpringIntegrationAndRabbitTest.*")
4949
jvmArgs("-Dotel.instrumentation.rabbitmq.enabled=true")
5050
jvmArgs("-Dotel.instrumentation.spring-rabbit.enabled=true")
51-
systemProperty("metaDataConfig", "otel.instrumentation.rabbitmq.enabled=true,otel.instrumentation.spring-rabbit.enabled=true")
51+
systemProperty("metaDataConfig", "otel.instrumentation.spring-rabbit.enabled=true")
5252
}
5353

5454
val testWithProducerInstrumentation by registering(Test::class) {

0 commit comments

Comments
 (0)