Skip to content

Commit 4911e83

Browse files
committed
merge
1 parent 9ef64ab commit 4911e83

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: smoke-tests-otel-starter/spring-boot-common/src/main/java/io/opentelemetry/spring/smoketest/OtelSpringStarterSmokeTestController.java

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
public class OtelSpringStarterSmokeTestController {
1616

1717
public static final String PING = "/ping";
18+
public static final String TEST = "/test";
1819
public static final String TEST_HISTOGRAM = "histogram-test-otel-spring-starter";
1920
public static final String METER_SCOPE_NAME = "scope";
2021
private final LongHistogram histogram;
@@ -33,4 +34,9 @@ public String ping() {
3334
component.withSpanMethod("from-controller");
3435
return "pong";
3536
}
37+
38+
@GetMapping(TEST)
39+
public String testUrlToRedact() {
40+
return "ok";
41+
}
3642
}

0 commit comments

Comments
 (0)