opentelemetry_sdk 0.27.0

The SDK for the OpenTelemetry metrics collection and distributed tracing framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
# Changelog

## vNext

## 0.27.0

Released 2024-Nov-11

- Update `opentelemetry` dependency version to 0.27
- Update `opentelemetry-http` dependency version to 0.27

- Bump MSRV to 1.70 [#2179]https://github.com/open-telemetry/opentelemetry-rust/pull/2179
- Implement `LogRecord::set_trace_context` for `LogRecord`. Respect any trace context set on a `LogRecord` when emitting through a `Logger`.
- Improved `LoggerProvider` shutdown handling to prevent redundant shutdown calls when `drop` is invoked. [#2195]https://github.com/open-telemetry/opentelemetry-rust/pull/2195
- When creating new metric instruments by calling `build()`, SDK would return a no-op instrument if the validation fails (eg: Invalid metric name). [#2166]https://github.com/open-telemetry/opentelemetry-rust/pull/2166
- **BREAKING for Metrics users**:
  - **Replaced**
    - ([#2217]https://github.com/open-telemetry/opentelemetry-rust/pull/2217): Removed `{Delta,Cumulative}TemporalitySelector::new()` in favor of directly using `Temporality` enum to simplify the configuration of MetricsExporterBuilder with different temporalities.
  - **Renamed**
    - ([#2232]https://github.com/open-telemetry/opentelemetry-rust/pull/2232): The `init` method used to create instruments has been renamed to `build`.  
      Before:
      ```rust
      let counter = meter.u64_counter("my_counter").init();
      ```
      Now:
      ```rust
      let counter = meter.u64_counter("my_counter").build();
      ```
    - ([#2255]https://github.com/open-telemetry/opentelemetry-rust/pull/2255): de-pluralize Metric types.
      - `PushMetricsExporter` -> `PushMetricExporter`
      - `InMemoryMetricsExporter` -> `InMemoryMetricExporter`
      - `InMemoryMetricsExporterBuilder` -> `InMemoryMetricExporterBuilder`
- **BREAKING**: [#2220]https://github.com/open-telemetry/opentelemetry-rust/pull/2220
  - Removed `InstrumentationLibrary` re-export and its `Scope` alias, use `opentelemetry::InstrumentationLibrary` instead.
  - Unified builders across signals
    - Removed deprecated `LoggerProvider::versioned_logger`, `TracerProvider::versioned_tracer`
    - Removed `MeterProvider::versioned_meter`
    - Replaced these methods with `LoggerProvider::logger_with_scope`, `TracerProvider::logger_with_scope`, `MeterProvider::meter_with_scope`

- [#2272]https://github.com/open-telemetry/opentelemetry-rust/pull/2272
   - Pin url version to `2.5.2`. The higher version breaks the build refer: [servo/rust-url#992.]https://github.com/servo/rust-url/issues/992
   The `url` crate is used when `jaeger_remote_sampler` feature is enabled.

- **BREAKING**: [#2266]https://github.com/open-telemetry/opentelemetry-rust/pull/2266
   - Moved `ExportError` trait from `opentelemetry::ExportError` to `opentelemetry_sdk::export::ExportError`
   - Moved `LogError` enum from `opentelemetry::logs::LogError` to `opentelemetry_sdk::logs::LogError`
   - Moved `LogResult` type alias from `opentelemetry::logs::LogResult` to `opentelemetry_sdk::logs::LogResult`
   - Renamed `opentelemetry::metrics::Result` type alias to `opentelemetry::metrics::MetricResult`
   - Renamed `opentelemetry::metrics::MetricsError` enum to `opentelemetry::metrics::MetricError`
   - Moved `MetricError` enum from `opentelemetry::metrics::MetricError` to `opentelemetry_sdk::metrics::MetricError`
   - Moved `MetricResult` type alias from `opentelemetry::metrics::MetricResult` to `opentelemetry_sdk::metrics::MetricResult`

  - Users calling public APIs that return these constructs (e.g, LoggerProvider::shutdown(), MeterProvider::force_flush()) should now import them from the SDK instead of the API.
  - Developers creating custom exporters should ensure they import these constructs from the SDK, not the API.
  - [2291]https://github.com/open-telemetry/opentelemetry-rust/pull/2291 Rename `logs_level_enabled flag` to `spec_unstable_logs_enabled`. Please enable this updated flag if the feature is needed. This flag will be removed once the feature is stabilized in the specifications.

- **BREAKING**: `Temporality` enum moved from `opentelemetry_sdk::metrics::data::Temporality` to `opentelemetry_sdk::metrics::Temporality`.

- **BREAKING**: `Views` are now an opt-in ONLY feature. Please include the feature `spec_unstable_metrics_views` to enable `Views`. It will be stabilized post 1.0 stable release of the SDK. [#2295]https://github.com/open-telemetry/opentelemetry-rust/issues/2295

- Added a new `PeriodicReader` implementation (`PeriodicReaderWithOwnThread`)
  that does not rely on an async runtime, and instead creates own Thread. This
  is under feature flag "experimental_metrics_periodic_reader_no_runtime". The
  functionality maybe moved into existing PeriodReader or even removed in the
  future. As of today, this cannot be used as-is with OTLP Metric Exporter or
  any exporter that require an async runtime.

## v0.26.0
Released 2024-Sep-30

- Update `opentelemetry` dependency version to 0.26
- **BREAKING** Public API changes:
  - **Removed**: `SdkMeter` struct [#2113]https://github.com/open-telemetry/opentelemetry-rust/pull/2113. This API is only meant for internal use.
  - **Removed**: `AggregationSelector` trait and `DefaultAggregationSelector` struct [#2085]https://github.com/open-telemetry/opentelemetry-rust/pull/2085. This API was unnecessary. The feature to customize aggregation for instruments should be offered by `Views` API.

- Update `async-std` dependency version to 1.13
- *Breaking* - Remove support for `MetricProducer` which allowed metrics from
  external sources to be sent through OpenTelemetry.
  [#2105]https://github.com/open-telemetry/opentelemetry-rust/pull/2105
- Feature: `SimpleSpanProcessor::new` is now public [#2119]https://github.com/open-telemetry/opentelemetry-rust/pull/2119
- For Delta Temporality, exporters are not invoked unless there were new
  measurements since the last collect/export.
  [#2153]https://github.com/open-telemetry/opentelemetry-rust/pull/2153
- `MeterProvider` modified to not invoke shutdown on `Drop`, if user has already
  called `shutdown()`.
  [#2156]https://github.com/open-telemetry/opentelemetry-rust/pull/2156

## v0.25.0

- Update `opentelemetry` dependency version to 0.25
- Starting with this version, this crate will align with `opentelemetry` crate
  on major,minor versions.
- Perf improvements for all metric instruments (except `ExponentialHistogram`) that led to **faster metric updates** and **higher throughput** [#1740]https://github.com/open-telemetry/opentelemetry-rust/pull/1740:
  - **Zero allocations when recording measurements**: Once a measurement for a given attribute combination is reported, the SDK would not allocate additional memory for subsquent measurements reported for the same combination.
  - **Minimized thread contention**: Threads reporting measurements for the same instrument no longer contest for the same `Mutex`. The internal aggregation data structure now uses a combination of `RwLock` and atomics. Consequently, threads reporting measurements now only have to acquire a read lock.
  - **Lock-free floating point updates**: Measurements reported for `f64` based metrics no longer need to acquire a `Mutex` to update the `f64` value. They use a CAS-based loop instead.

- `opentelemetry_sdk::logs::record::LogRecord` and `opentelemetry_sdk::logs::record::TraceContext` derive from `PartialEq` to facilitate Unit Testing.
- Fixed an issue causing a panic during shutdown when using the
  `TokioCurrentThread` in BatchExportProcessor for traces and logs.
  [#1964]https://github.com/open-telemetry/opentelemetry-rust/pull/1964
  [#1973]https://github.com/open-telemetry/opentelemetry-rust/pull/1973
- Fix BatchExportProcessor for traces and logs to trigger first export at the
  first interval instead of doing it right away.
  [#1970]https://github.com/open-telemetry/opentelemetry-rust/pull/1970
  [#1973]https://github.com/open-telemetry/opentelemetry-rust/pull/1973
  - **Breaking** [#1985]https://github.com/open-telemetry/opentelemetry-rust/pull/1985
  Hide LogRecord attributes Implementation Details from processors and exporters.
  The custom exporters and processors can't directly access the `LogData::LogRecord::attributes`, as
  these are private to opentelemetry-sdk. Instead, they would now use LogRecord::attributes_iter()
  method to access them.
- Fixed various Metric aggregation bug related to
  ObservableCounter,UpDownCounter including
  [#1517]https://github.com/open-telemetry/opentelemetry-rust/issues/1517.
  [#2004]https://github.com/open-telemetry/opentelemetry-rust/pull/2004
- Fixed a bug related to cumulative aggregation of `Gauge` measurements.
  [#1975]https://github.com/open-telemetry/opentelemetry-rust/issues/1975.
  [#2021]https://github.com/open-telemetry/opentelemetry-rust/pull/2021
- Provide default implementation for `event_enabled` method in `LogProcessor`
  trait that returns `true` always.
- **Breaking** [#2041]https://github.com/open-telemetry/opentelemetry-rust/pull/2041
  and [#2057]https://github.com/open-telemetry/opentelemetry-rust/pull/2057
  - The Exporter::export() interface is modified as below:
    Previous Signature:
    ```rust
    async fn export<'a>(&mut self, batch: Vec<Cow<'a, LogData>>) -> LogResult<()>;
    ```

    Updated Signature:
    ```rust
    async fn export(&mut self, batch: LogBatch<'_>) -> LogResult<()>;
    ```

    where
    ```rust
    pub struct LogBatch<'a> {

      data: &'a [(&'a LogRecord, &'a InstrumentationLibrary)],
    }
    ```
    This change enhances performance by reducing unnecessary heap allocations and maintains object safety, allowing for more efficient handling of log records. It also simplifies the processing required by exporters. Exporters no longer need to determine if the LogData is borrowed or owned, as they now work directly with references. As a result, exporters must explicitly create a copy of LogRecord and/or InstrumentationLibrary when needed, as the new interface only provides references to these structures.

## v0.24.1

- Add hidden method to support tracing-opentelemetry

## v0.24.0

- Add "metrics", "logs" to default features. With this, default feature list is
  "trace", "metrics" and "logs".
- Add `with_resource` on Builder for LoggerProvider, replacing the `with_config`
  method. Instead of using
  `.with_config(Config::default().with_resource(RESOURCE::default()))` users
  must now use `.with_resource(RESOURCE::default())` to configure Resource on
  logger provider.
- Removed dependency on `ordered-float`.
- Removed `XrayIdGenerator`, which was marked deprecated since 0.21.3. Use
  [`opentelemetry-aws`]https://crates.io/crates/opentelemetry-aws, version
  0.10.0 or newer.
- Performance Improvement - Counter/UpDownCounter instruments internally use
  `RwLock` instead of `Mutex` to reduce contention

- **Breaking** [1726]https://github.com/open-telemetry/opentelemetry-rust/pull/1726
  Update `LogProcessor::emit()` method to take mutable reference to LogData. This is breaking
  change for LogProcessor developers. If the processor needs to invoke the exporter
  asynchronously, it should clone the data to ensure it can be safely processed without
  lifetime issues. Any changes made to the log data before cloning in this method will be
  reflected in the next log processor in the chain, as well as to the exporter.
- **Breaking** [1726]https://github.com/open-telemetry/opentelemetry-rust/pull/1726
 Update `LogExporter::export()` method to accept a batch of log data, which can be either a
 reference or owned`LogData`. If the exporter needs to process the log data
 asynchronously, it should clone the log data to ensure it can be safely processed without
 lifetime issues.
- Clean up public methods in SDK.
    - [`TracerProvider::span_processors`] and [`TracerProvider::config`] was removed as it's not part of the spec.
    - Added `non_exhaustive` annotation to [`trace::Config`]. Marked [`config`] as deprecated since it's only a wrapper for `Config::default`
    - Removed [`Tracer::tracer_provder`] and [`Tracer::instrument_libraries`] as it's not part of the spec.

- **Breaking** [#1830]https://github.com/open-telemetry/opentelemetry-rust/pull/1830/files [Traces SDK] Improves
  performance by sending Resource information to processors (and exporters) once, instead of sending with every log. If you are an author
  of Processor, Exporter, the following are *BREAKING* changes.
    - Implement `set_resource` method in your custom SpanProcessor, which invokes exporter's `set_resource`.
    - Implement `set_resource` method in your custom SpanExporter. This method should save the resource object
      in original or serialized format, to be merged with every span event during export.
    - `SpanData` doesn't have the resource attributes. The `SpanExporter::export()` method needs to merge it
      with the earlier preserved resource before export.

- **Breaking** [1836]https://github.com/open-telemetry/opentelemetry-rust/pull/1836 `SpanProcessor::shutdown` now takes an immutable reference to self. Any reference can call shutdown on the processor. After the first call to `shutdown` the processor will not process any new spans.

- **Breaking** [1850] https://github.com/open-telemetry/opentelemetry-rust/pull/1850 `LoggerProvider::log_processors()` and `LoggerProvider::resource()` are not public methods anymore. They are only used within the `opentelemetry-sdk` crate.

- [1857]https://github.com/open-telemetry/opentelemetry-rust/pull/1857 Fixed an issue in Metrics SDK which prevented export errors from being send to global error handler. With the fix, errors occurring during export like OTLP Endpoint unresponsive shows up in stderr by default.

- [1869]https://github.com/open-telemetry/opentelemetry-rust/pull/1869 Added a `target` field to `LogRecord` structure, populated by `opentelemetry-appender-tracing` and `opentelemetry-appender-log` appenders.
```rust
async fn export<'a>(&mut self, batch: Vec<Cow<'a, LogData>>) -> LogResult<()>;
```
where `LogRecord` within `LogData` now includes:
```rust
LogData {
  LogRecord {
    event_name,
    target,  // newly added
    timestamp,
    observed_timestamp,
    trace_context,
    trace_context,
    severity_number,
    body,
    attributes
  }
  Instrumentation {
    name,
    version,
    schema_url,
    version
  }
}
```
The `LogRecord::target` field contains the actual target/component emitting the logs, while the `Instrumentation::name` contains the name of the OpenTelemetry appender.
- **Breaking** [#1674]https://github.com/open-telemetry/opentelemetry-rust/pull/1674 Update to `http` v1 types (via `opentelemetry-http` update)
- Update `opentelemetry` dependency version to 0.24
- Update `opentelemetry-http` dependency version to 0.13

## v0.23.0

- Fix SimpleSpanProcessor to be consistent with log counterpart. Also removed
  dependency on crossbeam-channel.
  [1612]https://github.com/open-telemetry/opentelemetry-rust/pull/1612/files
- [#1422]https://github.com/open-telemetry/opentelemetry-rust/pull/1422
  Fix metrics aggregation bug when using Views to drop attributes.
- [#1766]https://github.com/open-telemetry/opentelemetry-rust/pull/1766
  Fix Metrics PeriodicReader to trigger first collect/export at the first interval
  instead of doing it right away.
- [#1623]https://github.com/open-telemetry/opentelemetry-rust/pull/1623 Add Drop implementation for SdkMeterProvider,
  which shuts down metricreaders, thereby allowing metrics still in memory to be flushed out.
- **Breaking** [#1624]https://github.com/open-telemetry/opentelemetry-rust/pull/1624 Remove `OsResourceDetector` and
  `ProcessResourceDetector` resource detectors, use the
  [`opentelemetry-resource-detector`]https://crates.io/crates/opentelemetry-resource-detectors instead.
- [#1636]https://github.com/open-telemetry/opentelemetry-rust/pull/1636 [Logs SDK] Improves performance by sending
  Resource information to processors (and exporters) once, instead of sending with every log. If you are an author
  of Processor, Exporter, the following are *BREAKING* changes.
    - Implement `set_resource` method in your custom LogProcessor, which invokes exporter's `set_resource`.
    - Implement `set_resource` method in your custom LogExporter. This method should save the resource object
      in original or serialized format, to be merged with every log event during export.
    - `LogData` doesn't have the resource attributes. The `LogExporter::export()` method needs to merge it
      with the earlier preserved resource before export.
- Baggage propagation error will be reported to global error handler [#1640]https://github.com/open-telemetry/opentelemetry-rust/pull/1640
- Improves `shutdown` behavior of `LoggerProvider` and `LogProcessor` [#1643]https://github.com/open-telemetry/opentelemetry-rust/pull/1643.
  - `shutdown` can be called by any clone of the `LoggerProvider` without the need of waiting on all `Logger` drops. Thus, `try_shutdown` has been removed.
  - `shutdown` methods in `LoggerProvider` and `LogProcessor` now takes a immutable reference
  - After `shutdown`, `LoggerProvider` will return noop `Logger`
  - After `shutdown`, `LogProcessor` will not process any new logs
- Moving LogRecord implementation to the SDK. [1702]https://github.com/open-telemetry/opentelemetry-rust/pull/1702.
    - Relocated `LogRecord` struct to SDK, as an implementation for the trait in the API.
- **Breaking** [#1729]https://github.com/open-telemetry/opentelemetry-rust/pull/1729
  - Update the return type of `TracerProvider.span_processors()` from `&Vec<Box<dyn SpanProcessor>>` to `&[Box<dyn SpanProcessor>]`.
  - Update the return type of `LoggerProvider.log_processors()` from `&Vec<Box<dyn LogProcessor>>` to `&[Box<dyn LogProcessor>]`.
- Update `opentelemetry` dependency version to 0.23
- Update `opentelemetry-http` dependency version to 0.12
- **Breaking** [#1750]https://github.com/open-telemetry/opentelemetry-rust/pull/1729
  - Update the return type of `LoggerProvider.shutdown()` from `Vec<LogResult<()>>` to `LogResult<()>`.

## v0.22.1

### Fixed

- [#1576]https://github.com/open-telemetry/opentelemetry-rust/pull/1576
  Fix Span kind is always set to "internal".

## v0.22.0

### Deprecated

- XrayIdGenerator in the opentelemetry-sdk has been deprecated and moved to version 0.10.0 of the opentelemetry-aws crate.

### Added

- [#1410]https://github.com/open-telemetry/opentelemetry-rust/pull/1410 Add experimental synchronous gauge
- [#1471]https://github.com/open-telemetry/opentelemetry-rust/pull/1471 Configure batch log record processor via [`OTEL_BLRP_*`]https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#batch-logrecord-processor environment variables and via `OtlpLogPipeline::with_batch_config`
- [#1503]https://github.com/open-telemetry/opentelemetry-rust/pull/1503 Make the documentation for In-Memory exporters visible.

- [#1526]https://github.com/open-telemetry/opentelemetry-rust/pull/1526
Performance Improvement : Creating Spans and LogRecords are now faster, by avoiding expensive cloning of `Resource` for every Span/LogRecord.

### Changed
- **Breaking**
[#1313]https://github.com/open-telemetry/opentelemetry-rust/pull/1313
[#1350]https://github.com/open-telemetry/opentelemetry-rust/pull/1350
  Changes how Span links/events are stored to achieve performance gains. See
  below for details:

  *Behavior Change*: When enforcing `max_links_per_span`, `max_events_per_span`
  from `SpanLimits`, links/events are kept in the first-come order. The previous
  "eviction" based approach is no longer performed.

  *Breaking Change Affecting Exporter authors*:

  `SpanData` now stores `links` as `SpanLinks` instead of `EvictedQueue` where
  `SpanLinks` is a struct with a `Vec` of links and `dropped_count`.

  `SpanData` now stores `events` as `SpanEvents` instead of `EvictedQueue` where
  `SpanEvents` is a struct with a `Vec` of events and `dropped_count`.
- **Breaking** Remove `TextMapCompositePropagator` [#1373]https://github.com/open-telemetry/opentelemetry-rust/pull/1373. Use `TextMapCompositePropagator` in opentelemetry API.

- [#1375]https://github.com/open-telemetry/opentelemetry-rust/pull/1375/ Fix metric collections during PeriodicReader shutdown
- **Breaking** [#1480]https://github.com/open-telemetry/opentelemetry-rust/pull/1480 Remove fine grained `BatchConfig` configurations from `BatchLogProcessorBuilder` and `BatchSpanProcessorBuilder`. Use `BatchConfigBuilder` to construct a `BatchConfig` instance and pass it using `BatchLogProcessorBuilder::with_batch_config` or `BatchSpanProcessorBuilder::with_batch_config`.
- **Breaking** [#1480]https://github.com/open-telemetry/opentelemetry-rust/pull/1480 Remove mutating functions from `BatchConfig`, use `BatchConfigBuilder` to construct a `BatchConfig` instance.
- **Breaking** [#1495]https://github.com/open-telemetry/opentelemetry-rust/pull/1495 Remove Batch LogRecord&Span Processor configuration via non-standard environment variables. Use the following table to migrate from the no longer supported non-standard environment variables to the standard ones.

| No longer supported             | Standard equivalent       |
|---------------------------------|---------------------------|
| OTEL_BLRP_SCHEDULE_DELAY_MILLIS | OTEL_BLRP_SCHEDULE_DELAY  |
| OTEL_BLRP_EXPORT_TIMEOUT_MILLIS | OTEL_BLRP_EXPORT_TIMEOUT  |
| OTEL_BSP_SCHEDULE_DELAY_MILLIS  | OTEL_BSP_SCHEDULE_DELAY   |
| OTEL_BSP_EXPORT_TIMEOUT_MILLIS  | OTEL_BSP_EXPORT_TIMEOUT   |

- **Breaking** [#1455]https://github.com/open-telemetry/opentelemetry-rust/pull/1455 Make the LoggerProvider Owned
  - `Logger` now takes an Owned Logger instead of a `Weak<LoggerProviderInner>`
  - `LoggerProviderInner` is no longer `pub (crate)`
  - `Logger.provider()` now returns `&LoggerProvider` instead of an `Option<LoggerProvider>`

- [#1519]https://github.com/open-telemetry/opentelemetry-rust/pull/1519 Performance improvements
    when calling `Counter::add()` and `UpDownCounter::add()` with an empty set of attributes
    (e.g. `counter.Add(5, &[])`)

- **Breaking** Renamed `MeterProvider` and `Meter` to `SdkMeterProvider` and `SdkMeter` respectively to avoid name collision with public API types. [#1328]https://github.com/open-telemetry/opentelemetry-rust/pull/1328

### Fixed

- [#1481]https://github.com/open-telemetry/opentelemetry-rust/pull/1481 Fix error message caused by race condition when using PeriodicReader

## v0.21.2

### Fixed

- Fix delta aggregation metric reuse. [#1434]https://github.com/open-telemetry/opentelemetry-rust/pull/1434
- Fix `max_scale` validation of exponential histogram configuration. [#1452]https://github.com/open-telemetry/opentelemetry-rust/pull/1452

## v0.21.1

### Fixed

- Fix metric export corruption if gauges have not received a last value. [#1363]https://github.com/open-telemetry/opentelemetry-rust/pull/1363
- Return consistent `Meter` for a given scope from `MeterProvider`. [#1351]https://github.com/open-telemetry/opentelemetry-rust/pull/1351

## v0.21.0

### Added

- Log warning if two instruments have the same name with different [#1266]https://github.com/open-telemetry/opentelemetry-rust/pull/1266
  casing
- Log warning if view is created with empty criteria [#1266]https://github.com/open-telemetry/opentelemetry-rust/pull/1266
- Add exponential histogram support [#1267]https://github.com/open-telemetry/opentelemetry-rust/pull/1267
- Add `opentelemetry::sdk::logs::config()` for parity with `opentelemetry::sdk::trace::config()` [#1197]https://github.com/open-telemetry/opentelemetry-rust/pull/1197

### Changed

- Bump MSRV to 1.65 [#1318]https://github.com/open-telemetry/opentelemetry-rust/pull/1318
- Default Resource (the one used when no other Resource is explicitly provided) now includes `TelemetryResourceDetector`,
  populating "telemetry.sdk.*" attributes.
  [#1194]https://github.com/open-telemetry/opentelemetry-rust/pull/1194.
- Bump MSRV to 1.64 [#1203]https://github.com/open-telemetry/opentelemetry-rust/pull/1203
- Add unit/doc tests for MeterProvider [#1220]https://github.com/open-telemetry/opentelemetry-rust/pull/1220
- Changed dependency from `opentelemetry_api` to `opentelemetry` as the latter
  is now the API crate. [#1226]https://github.com/open-telemetry/opentelemetry-rust/pull/1226
- Add in memory span exporter [#1216]https://github.com/open-telemetry/opentelemetry-rust/pull/1216
- Add in memory log exporter [#1231]https://github.com/open-telemetry/opentelemetry-rust/pull/1231
- Add `Sync` bound to the `SpanExporter` and `LogExporter` traits [#1240]https://github.com/open-telemetry/opentelemetry-rust/pull/1240
- Move `MetricsProducer` config to builders to match other config [#1266]https://github.com/open-telemetry/opentelemetry-rust/pull/1266
- Return error earlier if readers are shut down [#1266]https://github.com/open-telemetry/opentelemetry-rust/pull/1266
- Add `/` to valid characters for instrument names [#1269]https://github.com/open-telemetry/opentelemetry-rust/pull/1269
- Increase instrument name maximum length from 63 to 255 [#1269]https://github.com/open-telemetry/opentelemetry-rust/pull/1269
- Updated crate documentation and examples.
  [#1256]https://github.com/open-telemetry/opentelemetry-rust/issues/1256
- Replace regex with glob [#1301]https://github.com/open-telemetry/opentelemetry-rust/pull/1301
- **Breaking**
  [#1293]https://github.com/open-telemetry/opentelemetry-rust/issues/1293
  makes few breaking changes with respect to how Span attributes are stored to
  achieve performance gains. See below for details:

  *Behavior Change*:

  SDK will no longer perform de-duplication of Span attribute Keys. Please share
  [feedback
  here](https://github.com/open-telemetry/opentelemetry-rust/issues/1300), if
  you are affected.

  *Breaking Change Affecting Exporter authors*:

   `SpanData` now stores `attributes` as `Vec<KeyValue>` instead of
  `EvictedHashMap`. `SpanData` now expose `dropped_attributes_count` as a
  separate field.

  *Breaking Change Affecting Sampler authors*:

  `should_sample` changes `attributes` from `OrderMap<Key, Value>` to
  `Vec<KeyValue>`.
- **Breaking** Move type argument from `RuntimeChannel<T>` to associated types [#1314]https://github.com/open-telemetry/opentelemetry-rust/pull/1314

### Removed

- Remove context from Metric force_flush [#1245]https://github.com/open-telemetry/opentelemetry-rust/pull/1245
- Remove `logs::BatchMessage` and `trace::BatchMessage` types [#1314]https://github.com/open-telemetry/opentelemetry-rust/pull/1314

### Fixed

- Fix metric instrument name validation to include `_` [#1274]https://github.com/open-telemetry/opentelemetry-rust/pull/1274

## v0.20.0

### Added

- Implement cardinality limits for metric streams
  [#1066]https://github.com/open-telemetry/opentelemetry-rust/pull/1066.
- Propagate shutdown calls from `PeriodicReader` to metrics exporter
  [#1138]https://github.com/open-telemetry/opentelemetry-rust/pull/1138.
- Add in memory metrics exporter #1017

### Changed

- New metrics SDK #1000
- Use `Cow<'static, str>` instead of `&'static str` #1018
- Unify trace and logs runtime extensions traits. #1067

### Changed

- Fix EvictedQueue bug when capacity is set to 0
  [#1151]https://github.com/open-telemetry/opentelemetry-rust/pull/1151.

### Removed

- Samplers no longer has access to `InstrumentationLibrary` as one of parameters
  to `should_sample`.
  [#1041]https://github.com/open-telemetry/opentelemetry-rust/pull/1041.
- Synchronous instruments no longer accepts `Context` while reporting
  measurements. [#1076]https://github.com/open-telemetry/opentelemetry-rust/pull/1076.
- Don't use CARGO_BIN_NAME for service name #1150

### Fixed

- Wait for exports on the simple span processor's ForceFlush #1030

## v0.19.0

### Added

- Add instrument validation to `InstrumentBuilder` [#884]https://github.com/open-telemetry/opentelemetry-rust/pull/884.
- Add `TelemetryResourceDetector` [#899]https://github.com/open-telemetry/opentelemetry-rust/pull/899.
- Add support for instrumentation scope attributes [#1021]https://github.com/open-telemetry/opentelemetry-rust/pull/1021.

### Changed

- Update to `opentelemetry_api` v0.19.
- Update to `opentelemetry_http` v0.8.
- Bump MSRV to 1.57 [#953]https://github.com/open-telemetry/opentelemetry-rust/pull/953.
- Fix doc in `ShouldSample` trait [#951]https://github.com/open-telemetry/opentelemetry-rust/pull/951
- Only run `ParentBased` delegate sampler when there is no parent [#948]https://github.com/open-telemetry/opentelemetry-rust/pull/948.
- Improve `SdkProvidedResourceDetector`'s doc [#964]https://github.com/open-telemetry/opentelemetry-rust/pull/964.
- Update dependencies and bump MSRV to 1.60 [#969]https://github.com/open-telemetry/opentelemetry-rust/pull/969.
- Use CARGO_BIN_NAME as default service name [#991]https://github.com/open-telemetry/opentelemetry-rust/pull/991.

### Removed

- Remove `in_memory` settings [#946]https://github.com/open-telemetry/opentelemetry-rust/pull/946.

## main

### Changed

- Update the Number in the SDK API to support min and max. #989

## v0.18.0

### Changed

- *BREAKING* `struct`s which implement `ShouldSample` a.k.a Custom Samplers must now
  implement `Clone`. This enables (#833)
- SDK split from `opentelemetry` crate