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 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.
8418
+
type: boolean
8419
+
default: false
8352
8420
telemetry:
8353
8421
- when: default
8354
8422
metrics:
@@ -8436,6 +8504,15 @@ libraries:
8436
8504
- name: user_agent.original
8437
8505
type: STRING
8438
8506
- name: netty-4.0
8507
+
display_name: Netty HTTP codec
8508
+
description: |
8509
+
This instrumentation enables HTTP client spans, HTTP client metrics, HTTP server spans, and HTTP server metrics for the Netty framework.
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.
This instrumentation enables HTTP client spans, HTTP client metrics, HTTP server spans, and HTTP server metrics for the Netty framework. Does not currently support capturing HTTP/2 traffic.
8663
+
semantic_conventions:
8664
+
- HTTP_CLIENT_SPANS
8665
+
- HTTP_CLIENT_METRICS
8666
+
- HTTP_SERVER_SPANS
8667
+
- HTTP_SERVER_METRICS
8668
+
library_link: https://netty.io/
8543
8669
source_path: instrumentation/netty/netty-4.1
8544
8670
scope:
8545
8671
name: io.opentelemetry.netty-4.1
@@ -8551,12 +8677,52 @@ libraries:
8551
8677
library:
8552
8678
- io.netty:netty-codec-http:4.1.0.Final
8553
8679
configurations:
8680
+
- name: otel.instrumentation.http.known-methods
8681
+
description: |
8682
+
Configures the instrumentation to recognize an alternative set of HTTP request methods. All other methods will be treated as `_OTHER`.
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.
Copy file name to clipboardExpand all lines: instrumentation/internal/internal-url-class-loader/javaagent-integration-tests/src/test/java/AddUrlTest.java
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,6 @@ static class TestUrlClassLoader extends URLClassLoader {
46
46
super(newURL[0], null);
47
47
}
48
48
49
-
// silence CodeNarc. URLClassLoader#addURL is protected, this method is public
0 commit comments