Skip to content

Commit 99748d9

Browse files
committed
more
1 parent ac3efff commit 99748d9

File tree

8 files changed

+19
-9
lines changed

8 files changed

+19
-9
lines changed

docs/instrumentation-list.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4611,11 +4611,11 @@ libraries:
46114611
display_name: JAX-WS
46124612
description: This instrumentation enables controller spans for JAX-WS Provider
46134613
implementations.
4614-
library_link: https://jakarta.ee/specifications/xml-web-services/2.3/apidocs/javax/xml/ws/package-summary.html
4615-
disabled_by_default: true
4614+
library_link: https://github.com/jakartaee/jax-ws-api
46164615
features:
46174616
- CONTROLLER_SPANS
46184617
- CONTEXT_PROPAGATION
4618+
- EXPERIMENTAL_ONLY
46194619
source_path: instrumentation/jaxws/jaxws-2.0
46204620
scope:
46214621
name: io.opentelemetry.jaxws-2.0
@@ -4628,7 +4628,7 @@ libraries:
46284628
type: boolean
46294629
default: false
46304630
telemetry:
4631-
- when: default
4631+
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
46324632
spans:
46334633
- span_kind: INTERNAL
46344634
attributes:
@@ -4645,6 +4645,7 @@ libraries:
46454645
- CONTROLLER_SPANS
46464646
- CONTEXT_PROPAGATION
46474647
- HTTP_ROUTE
4648+
- EXPERIMENTAL_ONLY
46484649
source_path: instrumentation/jaxws/jaxws-2.0-axis2-1.6
46494650
scope:
46504651
name: io.opentelemetry.jaxws-2.0-axis2-1.6
@@ -4657,7 +4658,7 @@ libraries:
46574658
type: boolean
46584659
default: false
46594660
telemetry:
4660-
- when: default
4661+
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
46614662
spans:
46624663
- span_kind: INTERNAL
46634664
attributes: []
@@ -4669,6 +4670,8 @@ libraries:
46694670
features:
46704671
- CONTROLLER_SPANS
46714672
- CONTEXT_PROPAGATION
4673+
- HTTP_ROUTE
4674+
- EXPERIMENTAL_ONLY
46724675
source_path: instrumentation/jaxws/jaxws-cxf-3.0
46734676
scope:
46744677
name: io.opentelemetry.jaxws-cxf-3.0
@@ -4681,7 +4684,7 @@ libraries:
46814684
type: boolean
46824685
default: false
46834686
telemetry:
4684-
- when: default
4687+
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
46854688
spans:
46864689
- span_kind: INTERNAL
46874690
attributes: []
@@ -4706,7 +4709,7 @@ libraries:
47064709
type: boolean
47074710
default: false
47084711
telemetry:
4709-
- when: default
4712+
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
47104713
spans:
47114714
- span_kind: INTERNAL
47124715
attributes:

instrumentation/jaxws/jaxws-2.0-axis2-1.6/javaagent/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,5 @@ tasks.withType<Test>().configureEach {
6565
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
6666
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
6767
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
68+
systemProperty("metadataConfig", "otel.instrumentation.common.experimental.controller-telemetry.enabled=true")
6869
}

instrumentation/jaxws/jaxws-2.0-axis2-1.6/metadata.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ features:
77
- CONTROLLER_SPANS
88
- CONTEXT_PROPAGATION
99
- HTTP_ROUTE
10+
- EXPERIMENTAL_ONLY
1011
configurations:
1112
- name: otel.instrumentation.common.experimental.controller-telemetry.enabled
1213
description: Enables the creation of experimental controller (INTERNAL) spans.

instrumentation/jaxws/jaxws-2.0/javaagent/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ dependencies {
1818
tasks.withType<Test>().configureEach {
1919
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
2020
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
21+
systemProperty("metadataConfig", "otel.instrumentation.common.experimental.controller-telemetry.enabled=true")
2122
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
display_name: JAX-WS
22
description: This instrumentation enables controller spans for JAX-WS Provider implementations.
3-
library_link: https://jakarta.ee/specifications/xml-web-services/2.3/apidocs/javax/xml/ws/package-summary.html
3+
library_link: https://github.com/jakartaee/jax-ws-api
44
features:
55
- CONTROLLER_SPANS
66
- CONTEXT_PROPAGATION
7+
- EXPERIMENTAL_ONLY
78
configurations:
89
- name: otel.instrumentation.common.experimental.controller-telemetry.enabled
910
description: Enables the creation of experimental controller (INTERNAL) spans.
1011
type: boolean
1112
default: false
12-
disabled_by_default: true

instrumentation/jaxws/jaxws-cxf-3.0/javaagent/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,5 @@ tasks.withType<Test>().configureEach {
5151
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
5252
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
5353
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
54+
systemProperty("metadataConfig", "otel.instrumentation.common.experimental.controller-telemetry.enabled=true")
5455
}

instrumentation/jaxws/jaxws-cxf-3.0/metadata.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ library_link: https://cxf.apache.org/
66
features:
77
- CONTROLLER_SPANS
88
- CONTEXT_PROPAGATION
9+
- HTTP_ROUTE
10+
- EXPERIMENTAL_ONLY
911
configurations:
1012
- name: otel.instrumentation.common.experimental.controller-telemetry.enabled
1113
description: Enables the creation of experimental controller (INTERNAL) spans.
1214
type: boolean
13-
default: false
15+
default: false

instrumentation/jaxws/jaxws-jws-api-1.1/javaagent/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ dependencies {
1818
tasks.withType<Test>().configureEach {
1919
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
2020
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
21+
systemProperty("metadataConfig", "otel.instrumentation.common.experimental.controller-telemetry.enabled=true")
2122
}

0 commit comments

Comments
 (0)