Skip to content

Commit e411052

Browse files
committed
merge
2 parents 9a77135 + ba26be1 commit e411052

File tree

30 files changed

+174
-116
lines changed

30 files changed

+174
-116
lines changed

benchmark-overhead/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ dependencies {
2323
testImplementation("org.testcontainers:testcontainers-postgresql")
2424
testImplementation("org.junit.jupiter:junit-jupiter-api")
2525
testImplementation("org.junit.jupiter:junit-jupiter-params")
26-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
26+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
2727
testImplementation("org.jooq:joox:2.0.1")
28-
testImplementation("com.jayway.jsonpath:json-path:2.9.0")
28+
testImplementation("com.jayway.jsonpath:json-path:2.10.0")
2929
testImplementation("org.slf4j:slf4j-simple:2.0.17")
3030

3131
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")

build.gradle.kts

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

2323
buildscript {
2424
dependencies {
25-
classpath("com.squareup.okhttp3:okhttp:5.2.1")
25+
classpath("com.squareup.okhttp3:okhttp:5.3.0")
2626
}
2727
}
2828

docs/instrumentation-list.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5755,12 +5755,24 @@ libraries:
57555755
- name: code.namespace
57565756
type: STRING
57575757
- name: jaxws-metro-2.2
5758+
display_name: Metro JAX-WS
5759+
description: |
5760+
This instrumentation enriches HTTP server spans with route information, and enables controller spans for Metro JAX-WS web services (controller spans are disabled by default).
5761+
library_link: https://javaee.github.io/metro/
5762+
features:
5763+
- HTTP_ROUTE
5764+
- CONTROLLER_SPANS
57585765
source_path: instrumentation/jaxws/jaxws-metro-2.2
57595766
scope:
57605767
name: io.opentelemetry.jaxws-metro-2.2
57615768
target_versions:
57625769
javaagent:
57635770
- com.sun.xml.ws:jaxws-rt:[2.2.0.1,)
5771+
configurations:
5772+
- name: otel.instrumentation.common.experimental.controller-telemetry.enabled
5773+
description: Enables the creation of experimental controller spans.
5774+
type: boolean
5775+
default: false
57645776
telemetry:
57655777
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
57665778
spans:

examples/distro/instrumentation/servlet-3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
exclude group: 'org.eclipse.jetty', module: 'jetty-server'
2828
}
2929

30-
testImplementation "com.squareup.okhttp3:okhttp:5.2.1"
30+
testImplementation "com.squareup.okhttp3:okhttp:5.3.0"
3131
testImplementation "javax.servlet:javax.servlet-api:3.0.1"
3232
testImplementation "org.eclipse.jetty:jetty-server:8.2.0.v20160908"
3333
testImplementation "org.eclipse.jetty:jetty-servlet:8.2.0.v20160908"

examples/distro/smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
testImplementation("org.testcontainers:testcontainers:2.0.1")
77
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.33.0")
9-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
9+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
1010
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.8.0-alpha")
1111
testImplementation("io.opentelemetry:opentelemetry-api")
1212

examples/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ dependencies {
101101
testImplementation("org.testcontainers:testcontainers:2.0.1")
102102
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
103103
testImplementation("com.google.protobuf:protobuf-java-util:4.33.0")
104-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
104+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
105105
testImplementation("io.opentelemetry:opentelemetry-api")
106106
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.8.0-alpha")
107107

instrumentation-docs/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ otelJava {
99

1010
dependencies {
1111
implementation("org.yaml:snakeyaml:2.5")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
1313
implementation("io.opentelemetry:opentelemetry-sdk-common")
1414

15-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
16-
testImplementation("org.assertj:assertj-core:3.27.6")
15+
testImplementation("org.assertj:assertj-core")
1716
testImplementation("org.junit.jupiter:junit-jupiter-api")
1817
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1918
}

instrumentation-docs/collect.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -154,17 +154,17 @@ main() {
154154
run_gradle_tasks "${gradle_tasks[@]}"
155155

156156
# Setup colima if needed
157-
# setup_colima
158-
#
159-
# # Process colima-specific instrumentations
160-
# echo "Processing colima instrumentations..."
161-
# gradle_tasks=()
162-
# while IFS= read -r line; do
163-
# gradle_tasks+=("$line")
164-
# done < <(process_descriptors "${COLIMA_INSTRUMENTATIONS[@]}")
165-
# run_gradle_tasks "${gradle_tasks[@]}"
166-
#
167-
# colima stop
157+
setup_colima
158+
159+
# Process colima-specific instrumentations
160+
echo "Processing colima instrumentations..."
161+
gradle_tasks=()
162+
while IFS= read -r line; do
163+
gradle_tasks+=("$line")
164+
done < <(process_descriptors "${COLIMA_INSTRUMENTATIONS[@]}")
165+
run_gradle_tasks "${gradle_tasks[@]}"
166+
167+
colima stop
168168

169169
# uncomment the next line to remove all .telemetry directories
170170
#find_and_remove_all_telemetry

instrumentation-docs/instrumentations.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ readonly INSTRUMENTATIONS=(
127127
"jaxws:jaxws-2.0-axis2-1.6:javaagent:test"
128128
"jaxws:jaxws-cxf-3.0:javaagent:test"
129129
"jaxws:jaxws-jws-api-1.1:javaagent:test"
130+
"jaxws:jaxws-metro-2.2:javaagent:test"
130131
"jedis:jedis-1.4:javaagent:test"
131132
"jedis:jedis-1.4:javaagent:testStableSemconv"
132133
"jedis:jedis-3.0:javaagent:test"

instrumentation/aws-sdk/aws-sdk-2.2/testing/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ dependencies {
2929

3030
// used to record LLM responses in bedrock tests
3131
implementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
32-
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2")
33-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2")
32+
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
33+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
3434

3535
implementation("io.opentelemetry:opentelemetry-api")
3636
}

0 commit comments

Comments
 (0)