Skip to content

Commit

Permalink
Update the OpenTelemetry SDK version to 1.39.0 in 1.33.x branch (#11603)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Jun 17, 2024
1 parent 4a728e4 commit 3496041
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val dependencyVersions = hashMapOf<String, String>()
rootProject.extra["versions"] = dependencyVersions

// this line is managed by .github/scripts/update-sdk-version.sh
val otelSdkVersion = "1.38.0"
val otelSdkVersion = "1.39.0"
val otelSdkAlphaVersion = otelSdkVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")

// Need both BOM and groovy jars
Expand Down
2 changes: 1 addition & 1 deletion examples/distro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subprojects {
ext {
versions = [
// this line is managed by .github/scripts/update-sdk-version.sh
opentelemetrySdk : "1.38.0",
opentelemetrySdk : "1.39.0",

// these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "1.33.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version '1.0'
ext {
versions = [
// this line is managed by .github/scripts/update-sdk-version.sh
opentelemetrySdk : "1.38.0",
opentelemetrySdk : "1.39.0",

// these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "1.33.3",
Expand Down
64 changes: 32 additions & 32 deletions licenses/licenses.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class PrometheusSmokeTest extends SmokeTest {

then:
def prometheusClient = WebClient.of("h1c://localhost:${containerManager.getTargetMappedPort(9090)}")
def prometheusData = prometheusClient.get("/").aggregate().join().contentUtf8()
def prometheusData = prometheusClient.get("/metrics").aggregate().join().contentUtf8()

prometheusData.contains("process_runtime_jvm_memory_usage")

Expand Down

0 comments on commit 3496041

Please sign in to comment.