You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: buildSrc/src/main/java/Config.kt
-19Lines changed: 0 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,6 @@ object Config {
76
76
val springBoot3StarterSecurity ="org.springframework.boot:spring-boot-starter-security:$springBoot3Version"
77
77
val springBoot3StarterJdbc ="org.springframework.boot:spring-boot-starter-jdbc:$springBoot3Version"
78
78
val springBoot3StarterActuator ="org.springframework.boot:spring-boot-starter-actuator:$springBoot3Version"
79
-
val springBoot3StarterOpenTelemetry ="io.opentelemetry.instrumentation:opentelemetry-spring-boot-starter:${OpenTelemetry.otelInstrumentationVersion}"
80
79
81
80
val springWeb ="org.springframework:spring-webmvc"
82
81
val springWebflux ="org.springframework:spring-webflux"
@@ -126,24 +125,6 @@ object Config {
126
125
val apolloKotlin4 ="com.apollographql.apollo:apollo-runtime:4.1.1"
127
126
128
127
val sentryNativeNdk ="io.sentry:sentry-native-ndk:0.8.4"
129
-
130
-
object OpenTelemetry {
131
-
val otelVersion ="1.44.1"
132
-
val otelAlphaVersion ="$otelVersion-alpha"
133
-
val otelInstrumentationVersion ="2.10.0"
134
-
val otelInstrumentationAlphaVersion ="$otelInstrumentationVersion-alpha"
135
-
val otelSemanticConvetionsVersion ="1.28.0-alpha"// check https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/dependencyManagement/build.gradle.kts#L49 for release version above to find a compatible version
136
-
137
-
val otelSdk ="io.opentelemetry:opentelemetry-sdk:$otelVersion"
138
-
val otelSemconv ="io.opentelemetry.semconv:opentelemetry-semconv:$otelSemanticConvetionsVersion"
139
-
val otelSemconvIncubating ="io.opentelemetry.semconv:opentelemetry-semconv-incubating:$otelSemanticConvetionsVersion"
140
-
val otelJavaAgent ="io.opentelemetry.javaagent:opentelemetry-javaagent:$otelInstrumentationVersion"
141
-
val otelJavaAgentExtensionApi ="io.opentelemetry.javaagent:opentelemetry-javaagent-extension-api:$otelInstrumentationAlphaVersion"
142
-
val otelJavaAgentTooling ="io.opentelemetry.javaagent:opentelemetry-javaagent-tooling:$otelInstrumentationAlphaVersion"
143
-
val otelExtensionAutoconfigureSpi ="io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:$otelVersion"
144
-
val otelExtensionAutoconfigure ="io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:$otelVersion"
145
-
val otelInstrumentationBom ="io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:$otelInstrumentationVersion"
Copy file name to clipboardExpand all lines: gradle/libs.versions.toml
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ kotlin = "1.9.24"
8
8
# see https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-compatibility-and-versioning.html#kotlin-compatibility
9
9
# see https://developer.android.com/jetpack/androidx/releases/compose-kotlin
10
10
okhttp = "4.9.2"
11
+
otel = "1.44.1"
12
+
otelInstrumentation = "2.10.0"
13
+
otelInstrumentationAlpha = "2.10.0-alpha"
14
+
# check https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/dependencyManagement/build.gradle.kts#L49 for release version above to find a compatible version
0 commit comments