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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
35
35
The package contains semantic conventions from the `v1.15.0` version of the OpenTelemetry specification. (#3578)
36
36
- Add the `go.opentelemetry.io/otel/semconv/v1.16.0` package.
37
37
The package contains semantic conventions from the `v1.16.0` version of the OpenTelemetry specification. (#3579)
38
+
- Metric instruments were added to `go.opentelemetry.io/otel/metric/instrument`.
39
+
These instruments are use as replacements of the depreacted `go.opentelemetry.io/otel/metric/instrument/{asyncfloat64,asyncint64,syncfloat64,syncint64}` packages.(#3575)
40
+
-`Float64ObservableCounter` replaces the `asyncfloat64.Counter`
41
+
-`Float64ObservableUpDownCounter` replaces the `asyncfloat64.UpDownCounter`
42
+
-`Float64ObservableGauge` replaces the `asyncfloat64.Gauge`
43
+
-`Int64ObservableCounter` replaces the `asyncint64.Counter`
44
+
-`Int64ObservableUpDownCounter` replaces the `asyncint64.UpDownCounter`
45
+
-`Int64ObservableGauge` replaces the `asyncint64.Gauge`
46
+
-`Float64Counter` replaces the `syncfloat64.Counter`
47
+
-`Float64UpDownCounter` replaces the `syncfloat64.UpDownCounter`
48
+
-`Float64Histogram` replaces the `syncfloat64.Histogram`
49
+
-`Int64Counter` replaces the `syncint64.Counter`
50
+
-`Int64UpDownCounter` replaces the `syncint64.UpDownCounter`
51
+
-`Int64Histogram` replaces the `syncint64.Histogram`
38
52
39
53
### Changed
40
54
@@ -89,6 +103,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
89
103
### Deprecated
90
104
91
105
- The `NewMetricExporter` in `go.opentelemetry.io/otel/bridge/opencensus` is deprecated. Use `NewMetricProducer` instead. (#3541)
106
+
- The `go.opentelemetry.io/otel/metric/instrument/asyncfloat64` package is deprecated.
107
+
Use the instruments from `go.opentelemetry.io/otel/metric/instrument` instead. (#3575)
108
+
- The `go.opentelemetry.io/otel/metric/instrument/asyncint64` package is deprecated.
109
+
Use the instruments from `go.opentelemetry.io/otel/metric/instrument` instead. (#3575)
110
+
- The `go.opentelemetry.io/otel/metric/instrument/syncfloat64` package is deprecated.
111
+
Use the instruments from `go.opentelemetry.io/otel/metric/instrument` instead. (#3575)
112
+
- The `go.opentelemetry.io/otel/metric/instrument/syncint64` package is deprecated.
113
+
Use the instruments from `go.opentelemetry.io/otel/metric/instrument` instead. (#3575)
0 commit comments