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
+24-4
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,28 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
14
14
This `Registration` can be used to unregister callbacks. (#3522)
15
15
- Add `Producer` interface and `Reader.RegisterProducer(Producer)` to `go.opentelemetry.io/otel/sdk/metric` to enable external metric Producers. (#3524)
16
16
17
-
### Removed
18
-
19
-
- The deprecated `go.opentelemetry.io/otel/sdk/metric/view` package is removed. (#3520)
20
-
21
17
### Changed
22
18
19
+
- The `InstrumentProvider` from `go.opentelemetry.io/otel/sdk/metric/asyncint64` is removed.
20
+
Use the new creation methods of the `Meter` in `go.opentelemetry.io/otel/sdk/metric` instead. (#3530)
21
+
- The `Counter` method is replaced by `Meter.Int64ObservableCounter`
22
+
- The `UpDownCounter` method is replaced by `Meter.Int64ObservableUpDownCounter`
23
+
- The `Gauge` method is replaced by `Meter.Int64ObservableGauge`
24
+
- The `InstrumentProvider` from `go.opentelemetry.io/otel/sdk/metric/asyncfloat64` is removed.
25
+
Use the new creation methods of the `Meter` in `go.opentelemetry.io/otel/sdk/metric` instead. (#3530)
26
+
- The `Counter` method is replaced by `Meter.Float64ObservableCounter`
27
+
- The `UpDownCounter` method is replaced by `Meter.Float64ObservableUpDownCounter`
28
+
- The `Gauge` method is replaced by `Meter.Float64ObservableGauge`
29
+
- The `InstrumentProvider` from `go.opentelemetry.io/otel/sdk/metric/syncint64` is removed.
30
+
Use the new creation methods of the `Meter` in `go.opentelemetry.io/otel/sdk/metric` instead. (#3530)
31
+
- The `Counter` method is replaced by `Meter.Int64Counter`
32
+
- The `UpDownCounter` method is replaced by `Meter.Int64UpDownCounter`
33
+
- The `Histogram` method is replaced by `Meter.Int64Histogram`
34
+
- The `InstrumentProvider` from `go.opentelemetry.io/otel/sdk/metric/syncfloat64` is removed.
35
+
Use the new creation methods of the `Meter` in `go.opentelemetry.io/otel/sdk/metric` instead. (#3530)
36
+
- The `Counter` method is replaced by `Meter.Float64Counter`
37
+
- The `UpDownCounter` method is replaced by `Meter.Float64UpDownCounter`
38
+
- The `Histogram` method is replaced by `Meter.Float64Histogram`
23
39
- Global error handler uses an atomic value instead of a mutex. (#3543)
24
40
- Add `Producer` interface and `Reader.RegisterProducer(Producer)` to `go.opentelemetry.io/otel/sdk/metric` to enable external metric Producers. (#3524)
25
41
- Add `NewMetricProducer` to `go.opentelemetry.io/otel/bridge/opencensus`, which can be used to pass OpenCensus metrics to an OpenTelemetry Reader. (#3541)
@@ -33,6 +49,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
33
49
34
50
- The `NewMetricExporter` in `go.opentelemetry.io/otel/bridge/opencensus` is deprecated. Use `NewMetricProducer` instead. (#3541)
35
51
52
+
### Removed
53
+
54
+
- The deprecated `go.opentelemetry.io/otel/sdk/metric/view` package is removed. (#3520)
0 commit comments