Skip to content

Commit 16fb338

Browse files
authored
Use multi-header B3 propagation by default (#41)
1 parent 6f3786d commit 16fb338

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agent/src/main/java/com/splunk/opentelemetry/SplunkAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void agentmain(final String agentArgs, final Instrumentation inst)
3232
// http://localhost:9080/v1/trace is the default endpoint for SmartAgent
3333
// http://localhost:14268/api/traces is the default endpoint for otel-collector
3434
setDefaultConfig("otel.exporter.jaeger.endpoint", "http://localhost:9080/v1/trace");
35-
setDefaultConfig("otel.propagators", "b3");
35+
setDefaultConfig("otel.propagators", "b3multi");
3636

3737
String max = valueOf(Integer.MAX_VALUE);
3838
setDefaultConfig("otel.config.max.attrs", max);

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ subprojects {
2222

2323
extra.set("versions", mapOf(
2424
"opentelemetry" to "0.10.0",
25-
"opentelemetryJavaagent" to "0.10.1"
25+
"opentelemetryJavaagent" to "0.10.2"
2626
))
2727

2828
repositories {

0 commit comments

Comments
 (0)