make spring starter stable (#11763)
This commit is contained in:
parent
e5af13931c
commit
77393359aa
|
@ -0,0 +1,8 @@
|
|||
Comparing source compatibility of opentelemetry-autoconfigure-spring-boot-2-2.6.0-SNAPSHOT.jar against
|
||||
+++ NEW CLASS: PUBLIC(+) io.opentelemetry.instrumentation.spring.autoconfigure.v2.OpenTelemetryAutoConfiguration (not serializable)
|
||||
+++ CLASS FILE FORMAT VERSION: 52.0 <- n.a.
|
||||
+++ NEW SUPERCLASS: java.lang.Object
|
||||
+++ NEW CONSTRUCTOR: PUBLIC(+) OpenTelemetryAutoConfiguration()
|
||||
+++ NEW ANNOTATION: org.springframework.context.annotation.Configuration
|
||||
+++ NEW ANNOTATION: org.springframework.boot.context.properties.EnableConfigurationProperties
|
||||
+++ NEW ELEMENT: value=io.opentelemetry.instrumentation.spring.autoconfigure.v2.internal.properties.OtlpExporterProperties,io.opentelemetry.instrumentation.spring.autoconfigure.v2.internal.properties.OtelResourceProperties,io.opentelemetry.instrumentation.spring.autoconfigure.v2.internal.properties.PropagationProperties (+)
|
|
@ -0,0 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-autoconfigure-spring-boot-3-2.6.0-SNAPSHOT.jar against
|
||||
No changes.
|
|
@ -0,0 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-spring-boot-starter-2.6.0-SNAPSHOT.jar against
|
||||
No changes.
|
|
@ -7,8 +7,8 @@ package io.opentelemetry.javaagent.instrumentation.r2dbc.v1_0;
|
|||
|
||||
import io.opentelemetry.api.GlobalOpenTelemetry;
|
||||
import io.opentelemetry.instrumentation.api.incubator.semconv.net.PeerServiceAttributesExtractor;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.R2dbcTelemetry;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.internal.R2dbcNetAttributesGetter;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.internal.shaded.R2dbcTelemetry;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.internal.shaded.internal.R2dbcNetAttributesGetter;
|
||||
import io.opentelemetry.javaagent.bootstrap.internal.AgentCommonConfig;
|
||||
import io.opentelemetry.javaagent.bootstrap.internal.AgentInstrumentationConfig;
|
||||
|
||||
|
|
|
@ -23,7 +23,11 @@ tasks {
|
|||
}
|
||||
relocate(
|
||||
"io.r2dbc.proxy",
|
||||
"io.opentelemetry.instrumentation.r2dbc.v1_0.shaded.io.r2dbc.proxy"
|
||||
"io.opentelemetry.instrumentation.r2dbc.v1_0.internal.shaded.io.r2dbc.proxy"
|
||||
)
|
||||
relocate(
|
||||
"io.opentelemetry.instrumentation.r2dbc.v1_0",
|
||||
"io.opentelemetry.instrumentation.r2dbc.v1_0.internal.shaded"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
plugins {
|
||||
id("otel.library-instrumentation")
|
||||
id("otel.japicmp-conventions")
|
||||
}
|
||||
|
||||
base.archivesName.set("opentelemetry-autoconfigure-spring-boot-2")
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
otel.stable=true
|
|
@ -6,7 +6,7 @@
|
|||
package io.opentelemetry.instrumentation.spring.autoconfigure.v2.internal.instrumentation.r2dbc;
|
||||
|
||||
import io.opentelemetry.api.OpenTelemetry;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.R2dbcTelemetry;
|
||||
import io.opentelemetry.instrumentation.r2dbc.v1_0.internal.shaded.R2dbcTelemetry;
|
||||
import io.opentelemetry.instrumentation.spring.autoconfigure.v2.internal.properties.InstrumentationConfigUtil;
|
||||
import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties;
|
||||
import io.r2dbc.spi.ConnectionFactory;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
plugins {
|
||||
id("otel.library-instrumentation")
|
||||
id("otel.japicmp-conventions")
|
||||
}
|
||||
|
||||
base.archivesName.set("opentelemetry-autoconfigure-spring-boot-3")
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
otel.stable=true
|
|
@ -1,6 +1,7 @@
|
|||
plugins {
|
||||
id("otel.java-conventions")
|
||||
id("otel.publish-conventions")
|
||||
id("otel.japicmp-conventions")
|
||||
}
|
||||
|
||||
group = "io.opentelemetry.instrumentation"
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
otel.stable=true
|
Loading…
Reference in New Issue