Skip to content

Commit caa9b68

Browse files
authored
Cross test quarkus resteasy reactive with vertx-web instrumentation (open-telemetry#8998)
1 parent 600c587 commit caa9b68

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

instrumentation/quarkus-resteasy-reactive/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/quarkus/resteasy/reactive/OtelRequestContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static OtelRequestContext start(ResteasyReactiveRequestContext requestCon
1616
OtelRequestContext context = new OtelRequestContext();
1717
contextThreadLocal.set(context);
1818
ResteasyReactiveSpanName.INSTANCE.updateServerSpanName(
19-
requestContext, HttpRouteSource.CONTROLLER);
19+
requestContext, HttpRouteSource.NESTED_CONTROLLER);
2020
return context;
2121
}
2222

instrumentation/quarkus-resteasy-reactive/quarkus2-testing/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414

1515
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
1616
testInstrumentation(project(":instrumentation:quarkus-resteasy-reactive:javaagent"))
17+
testInstrumentation(project(":instrumentation:vertx:vertx-web-3.0:javaagent"))
1718

1819
testImplementation(project(":instrumentation:quarkus-resteasy-reactive:common-testing"))
1920
testImplementation("io.quarkus:quarkus-junit5")

instrumentation/quarkus-resteasy-reactive/quarkus3-testing/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies {
2020

2121
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
2222
testInstrumentation(project(":instrumentation:quarkus-resteasy-reactive:javaagent"))
23+
testInstrumentation(project(":instrumentation:vertx:vertx-web-3.0:javaagent"))
2324

2425
testImplementation(project(":instrumentation:quarkus-resteasy-reactive:common-testing"))
2526
testImplementation("io.quarkus:quarkus-junit5")

0 commit comments

Comments
 (0)