@@ -62,6 +62,11 @@ libraries:
6262 target_versions :
6363 javaagent :
6464 - org.apache.shenyu:shenyu-web:[2.4.0,)
65+ configurations :
66+ - name : otel.instrumentation.apache-shenyu.experimental-span-attributes
67+ description : Enables experimental span attributes for Apache Shenyu instrumentation.
68+ type : boolean
69+ default : false
6570 - name : apache-httpclient-2.0
6671 source_path : instrumentation/apache-httpclient/apache-httpclient-2.0
6772 scope :
@@ -92,12 +97,22 @@ libraries:
9297 - io.dropwizard:dropwizard-client:(,3.0.0)
9398 - org.apache.httpcomponents:httpclient:[4.0,)
9499 - name : apache-dubbo-2.7
100+ description : The Apache Dubbo instrumentation provides client and server spans
101+ for Apache Dubbo RPC calls. Each call produces a span named after the Dubbo
102+ method, enriched with standard RPC attributes (system, service, method), network
103+ attributes, and error details if an exception occurs.
95104 source_path : instrumentation/apache-dubbo-2.7
96105 scope :
97106 name : io.opentelemetry.apache-dubbo-2.7
98107 target_versions :
99108 javaagent :
100109 - org.apache.dubbo:dubbo:[2.7,)
110+ configurations :
111+ - name : otel.instrumentation.common.peer-service-mapping
112+ description : Used to specify a mapping from host names or IP addresses to peer
113+ services.
114+ type : map
115+ default : ' '
101116 - name : apache-httpclient-5.2
102117 source_path : instrumentation/apache-httpclient/apache-httpclient-5.2
103118 scope :
@@ -166,6 +181,8 @@ libraries:
166181 - io.avaje:avaje-jex:[3.0,)
167182 aws :
168183 - name : aws-lambda-events-2.2
184+ description : |
185+ Provides full instrumentation of the Lambda library, including standard and custom event types, from `aws-lambda-java-events` 2.2+.
169186 source_path : instrumentation/aws-lambda/aws-lambda-events-2.2
170187 scope :
171188 name : io.opentelemetry.aws-lambda-events-2.2
@@ -175,7 +192,14 @@ libraries:
175192 library :
176193 - com.amazonaws:aws-lambda-java-events:2.2.1
177194 - com.amazonaws:aws-lambda-java-core:1.0.0
195+ configurations :
196+ - name : otel.instrumentation.aws-lambda.flush-timeout
197+ description : Flush timeout in milliseconds.
198+ type : int
199+ default : 10000
178200 - name : aws-lambda-core-1.0
201+ description : |
202+ Provides lightweight instrumentation of the Lambda core library, supporting all versions. Use this package if you only use `RequestStreamHandler` or know you don't use any event classes from `aws-lambda-java-events`. This also includes when you are using `aws-serverless-java-container` to run e.g., a Spring Boot application on Lambda.
179203 source_path : instrumentation/aws-lambda/aws-lambda-core-1.0
180204 scope :
181205 name : io.opentelemetry.aws-lambda-core-1.0
@@ -184,6 +208,11 @@ libraries:
184208 - com.amazonaws:aws-lambda-java-core:[1.0.0,)
185209 library :
186210 - com.amazonaws:aws-lambda-java-core:1.0.0
211+ configurations :
212+ - name : otel.instrumentation.aws-lambda.flush-timeout
213+ description : Flush timeout in milliseconds.
214+ type : int
215+ default : 10000
187216 - name : aws-sdk-1.11
188217 source_path : instrumentation/aws-sdk/aws-sdk-1.11
189218 scope :
@@ -195,6 +224,19 @@ libraries:
195224 library :
196225 - com.amazonaws:aws-java-sdk-sqs:[1.11.106,1.12.583)
197226 - com.amazonaws:aws-java-sdk-core:1.11.0
227+ configurations :
228+ - name : otel.instrumentation.aws-sdk.experimental-span-attributes
229+ description : Enables experimental span attributes for AWS SDK instrumentation.
230+ type : boolean
231+ default : false
232+ - name : otel.instrumentation.messaging.experimental.receive-telemetry.enabled
233+ description : Enables experimental receive telemetry for AWS SDK instrumentation.
234+ type : boolean
235+ default : false
236+ - name : otel.instrumentation.messaging.experimental.capture-headers
237+ description : Allows configuring headers to capture as span attributes.
238+ type : list
239+ default : ' '
198240 - name : aws-sdk-2.2
199241 source_path : instrumentation/aws-sdk/aws-sdk-2.2
200242 scope :
@@ -779,11 +821,21 @@ libraries:
779821 description : Enables statement sanitization for database queries.
780822 type : boolean
781823 default : true
824+ - name : otel.instrumentation.jdbc.experimental.transaction.enabled
825+ description : Enables experimental instrumentation to create spans for COMMIT
826+ and ROLLBACK operations.
827+ type : boolean
828+ default : false
782829 - name : otel.instrumentation.common.peer-service-mapping
783830 description : Used to specify a mapping from host names or IP addresses to peer
784831 services.
785832 type : map
786833 default : ' '
834+ - name : otel.instrumentation.jdbc.capture-query-parameters
835+ description : |
836+ Sets whether the query parameters should be captured as span attributes named <code>db.query.parameter.<key></code>. Enabling this option disables the statement sanitization.<p>WARNING: captured query parameters may contain sensitive information such as passwords, personally identifiable information or protected health info.
837+ type : boolean
838+ default : false
787839 - name : otel.instrumentation.jdbc-datasource.enabled
788840 description : Enables instrumentation of JDBC datasource connections.
789841 type : boolean
0 commit comments