You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable the capture of experimental HTTP server telemetry. Adds the `http.request.body.size` and `http.response.body.size` attributes to spans, and records `http.server.request.size` and `http.server.response.size` metrics.
Enable the capture of experimental HTTP client telemetry. Adds the `http.request.body.size` and `http.response.body.size` attributes to spans, and records `http.client.request.size` and `http.client.response.size` metrics.
Enable the capture of experimental HTTP server telemetry. Adds the `http.request.body.size` and `http.response.body.size` attributes to spans, and records `http.server.request.size` and `http.server.response.size` metrics.
177
+
type: boolean
178
+
default: false
118
179
telemetry:
119
180
- when: default
120
181
metrics:
@@ -206,6 +267,12 @@ libraries:
206
267
- com.alibaba:druid:(,)
207
268
library:
208
269
- com.alibaba:druid:1.0.0
270
+
configurations:
271
+
- name: otel.semconv-stability.opt-in
272
+
description: |
273
+
Opt-in to emit stable semantic conventions instead of the old experimental semantic conventions. Accepts a comma-separated list of semantic convention groups (e.g., `database`, `http`, `messaging`). Use `<group>/dup` to emit both old and new conventions simultaneously. Stable semantic conventions will become the default in version 3.0 of the agent.
274
+
type: list
275
+
default: ''
209
276
telemetry:
210
277
- when: default
211
278
metrics:
@@ -305,6 +372,12 @@ libraries:
305
372
- org.apache.commons:commons-dbcp2:[2,)
306
373
library:
307
374
- org.apache.commons:commons-dbcp2:2.0
375
+
configurations:
376
+
- name: otel.semconv-stability.opt-in
377
+
description: |
378
+
Opt-in to emit stable semantic conventions instead of the old experimental semantic conventions. Accepts a comma-separated list of semantic convention groups (e.g., `database`, `http`, `messaging`). Use `<group>/dup` to emit both old and new conventions simultaneously. Stable semantic conventions will become the default in version 3.0 of the agent.
379
+
type: list
380
+
default: ''
308
381
telemetry:
309
382
- when: default
310
383
metrics:
@@ -374,13 +447,13 @@ libraries:
374
447
type: STRING
375
448
- name: apache-dubbo-2.7
376
449
display_name: Apache Dubbo
377
-
description: The Apache Dubbo instrumentation provides RPC client spans and RPC
378
-
server spans for Apache Dubbo RPC calls. Each call produces a span named after
379
-
the Dubbo method, enriched with standard RPC attributes (system, service, method),
380
-
network attributes, and error details if an exception occurs.
450
+
description: |
451
+
The Apache Dubbo instrumentation provides RPC client spans and metrics, and RPC server spans and metrics for Apache Dubbo RPC calls.
Copy file name to clipboardExpand all lines: instrumentation/log4j/log4j-appender-1.2/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/log4j/appender/v1_2/Log4jAppenderInstrumentation.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,23 +46,23 @@ public void transform(TypeTransformer transformer) {
Copy file name to clipboardExpand all lines: instrumentation/log4j/log4j-appender-1.2/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/log4j/appender/v1_2/Log4jAppenderInstrumentationModule.java
0 commit comments