File tree 2 files changed +7
-8
lines changed
instrumentation/net/http/otelhttp
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
12
12
13
13
- Add the new ` go.opentelemetry.io/contrib/instrgen ` package to provide auto-generated source code instrumentation. (#3068 , #3108 )
14
14
15
+ ### Removed
16
+
17
+ - The deprecated ` RequestCount ` constant in ` go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp ` is removed. (#4894 )
18
+ - The deprecated ` RequestContentLength ` constant in ` go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp ` is removed. (#4894 )
19
+ - The deprecated ` ResponseContentLength ` constant in ` go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp ` is removed. (#4894 )
20
+ - The deprecated ` ServerLatency ` constant in ` go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp ` is removed. (#4894 )
21
+
15
22
## [ 1.23.0/0.48.0/0.17.0/0.3.0] - 2024-02-06
16
23
17
24
### Added
Original file line number Diff line number Diff line change @@ -31,14 +31,6 @@ const (
31
31
32
32
// Server HTTP metrics.
33
33
const (
34
- // Deprecated: This field is unused.
35
- RequestCount = "http.server.request_count" // Incoming request count total
36
- // Deprecated: Use of this field has been migrated to serverRequestSize. It will be removed in a future version.
37
- RequestContentLength = "http.server.request_content_length" // Incoming request bytes total
38
- // Deprecated: Use of this field has been migrated to serverResponseSize. It will be removed in a future version.
39
- ResponseContentLength = "http.server.response_content_length" // Incoming response bytes total
40
- // Deprecated: Use of this field has been migrated to serverDuration. It will be removed in a future version.
41
- ServerLatency = "http.server.duration" // Incoming end to end duration, milliseconds
42
34
serverRequestSize = "http.server.request.size" // Incoming request bytes total
43
35
serverResponseSize = "http.server.response.size" // Incoming response bytes total
44
36
serverDuration = "http.server.duration" // Incoming end to end duration, milliseconds
You can’t perform that action at this time.
0 commit comments