Skip to content

Commit 4d0e52a

Browse files
authored
Merge branch 'main' into remove-thread-name-from-metrics
2 parents 8835eb4 + 1b3aa9d commit 4d0e52a

File tree

76 files changed

+1241
-311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1241
-311
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
cache-read-only: ${{ github.event_name == 'pull_request' }}
5858

5959
- name: Initialize CodeQL
60-
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
60+
uses: github/codeql-action/init@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
6161
with:
6262
languages: ${{ matrix.language }}
6363
# using "latest" helps to keep up with the latest Kotlin support
@@ -73,6 +73,6 @@ jobs:
7373
run: ./gradlew assemble -x javadoc -x :instrumentation:quarkus-resteasy-reactive:quarkus3-testing:quarkusGenerateCodeDev -x :instrumentation:quarkus-resteasy-reactive:quarkus2-testing:quarkusGenerateCodeDev --no-build-cache --no-daemon
7474

7575
- name: Perform CodeQL analysis
76-
uses: github/codeql-action/analyze@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
76+
uses: github/codeql-action/analyze@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
7777
with:
7878
category: "/language:${{matrix.language}}"

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
# Upload the results to GitHub's code scanning dashboard (optional).
4343
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
45+
uses: github/codeql-action/upload-sarif@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
4646
with:
4747
sarif_file: results.sarif

.github/workflows/reusable-misspell-check.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ jobs:
1414

1515
- name: Install misspell
1616
run: |
17-
curl -L -o install-misspell.sh \
18-
https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh
19-
sh ./install-misspell.sh
17+
curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | sh -s -- -b bin
2018
2119
- name: Run misspell
2220
run: |

benchmark-overhead/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ repositories {
1818
dependencies {
1919
implementation(enforcedPlatform("org.junit:junit-bom:5.13.2"))
2020

21-
testImplementation("org.testcontainers:testcontainers:1.21.2")
22-
testImplementation("org.testcontainers:postgresql:1.21.2")
21+
testImplementation("org.testcontainers:testcontainers:1.21.3")
22+
testImplementation("org.testcontainers:postgresql:1.21.3")
2323
testImplementation("org.junit.jupiter:junit-jupiter-api")
2424
testImplementation("org.junit.jupiter:junit-jupiter-params")
2525
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

conventions/src/main/kotlin/otel.java-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ codenarc {
431431
checkstyle {
432432
configFile = rootProject.file("buildscripts/checkstyle.xml")
433433
// this version should match the version of google_checks.xml used as basis for above configuration
434-
toolVersion = "10.26.0"
434+
toolVersion = "10.26.1"
435435
maxWarnings = 0
436436
}
437437

dependencyManagement/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ val DEPENDENCY_BOMS = listOf(
2828
// even if they are only used by test dependencies, so not using junit bom since it is LGPL
2929

3030
"com.fasterxml.jackson:jackson-bom:2.19.1",
31-
"com.squareup.okio:okio-bom:3.13.0", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
31+
"com.squareup.okio:okio-bom:3.14.0", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
3232
"com.google.guava:guava-bom:33.4.8-jre",
3333
"org.apache.groovy:groovy-bom:${groovyVersion}",
3434
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",
3535
"io.opentelemetry:opentelemetry-bom-alpha:${otelSdkAlphaVersion}",
36-
"org.testcontainers:testcontainers-bom:1.21.2"
36+
"org.testcontainers:testcontainers-bom:1.21.3"
3737
)
3838

3939
val autoServiceVersion = "1.1.1"
4040
val autoValueVersion = "1.11.0"
41-
val errorProneVersion = "2.38.0"
41+
val errorProneVersion = "2.39.0"
4242
val byteBuddyVersion = "1.17.6"
4343
val asmVersion = "9.8"
4444
val jmhVersion = "1.37"

docs/instrumentation-list.yaml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2836,24 +2836,6 @@ libraries:
28362836
target_versions:
28372837
javaagent:
28382838
- io.projectreactor.netty:reactor-netty:[0.8.2.RELEASE,1.0.0)
2839-
telemetry:
2840-
- when: default
2841-
metrics:
2842-
- name: http.client.request.duration
2843-
description: Duration of HTTP client requests.
2844-
type: HISTOGRAM
2845-
unit: s
2846-
attributes:
2847-
- name: http.request.method
2848-
type: STRING
2849-
- name: http.response.status_code
2850-
type: LONG
2851-
- name: network.protocol.version
2852-
type: STRING
2853-
- name: server.address
2854-
type: STRING
2855-
- name: server.port
2856-
type: LONG
28572839
- name: reactor-netty-1.0
28582840
source_path: instrumentation/reactor/reactor-netty/reactor-netty-1.0
28592841
scope:
@@ -3214,21 +3196,6 @@ libraries:
32143196
type: STRING
32153197
- name: server.port
32163198
type: LONG
3217-
- name: http.server.request.duration
3218-
description: Duration of HTTP server requests.
3219-
type: HISTOGRAM
3220-
unit: s
3221-
attributes:
3222-
- name: http.request.method
3223-
type: STRING
3224-
- name: http.response.status_code
3225-
type: LONG
3226-
- name: http.route
3227-
type: STRING
3228-
- name: network.protocol.version
3229-
type: STRING
3230-
- name: url.scheme
3231-
type: STRING
32323199
- name: spring-webflux-5.3
32333200
source_path: instrumentation/spring/spring-webflux/spring-webflux-5.3
32343201
scope:

examples/distro/smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
testImplementation("org.testcontainers:testcontainers:1.21.2")
6+
testImplementation("org.testcontainers:testcontainers:1.21.3")
77
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.31.1")
99
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

examples/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies {
9797
implementation 'org.apache.commons:commons-lang3:3.17.0'
9898

9999
//All dependencies below are only for tests
100-
testImplementation("org.testcontainers:testcontainers:1.21.2")
100+
testImplementation("org.testcontainers:testcontainers:1.21.3")
101101
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
102102
testImplementation("com.google.protobuf:protobuf-java-util:4.31.1")
103103
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

instrumentation-api-incubator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group = "io.opentelemetry.instrumentation"
1313
dependencies {
1414
api("io.opentelemetry.semconv:opentelemetry-semconv")
1515
api(project(":instrumentation-api"))
16-
implementation("io.opentelemetry:opentelemetry-api-incubator")
16+
api("io.opentelemetry:opentelemetry-api-incubator")
1717

1818
compileOnly("com.google.auto.value:auto-value-annotations")
1919
annotationProcessor("com.google.auto.value:auto-value")

0 commit comments

Comments
 (0)