Skip to content

Commit

Permalink
Update default value for simple exemplar reservoir size (#4803)
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla authored Aug 28, 2023
1 parent d0d9133 commit 6570696
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/OpenTelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
* Increased the character limit of the Meter instrument name from 63 to 255.
([#4774](https://github.com/open-telemetry/opentelemetry-dotnet/issues/4774))

* Update default size for `SimpleExemplarReservoir` to `1`.
([#4803](https://github.com/open-telemetry/opentelemetry-dotnet/issues/4803))

## 1.6.0-rc.1

Released 2023-Aug-21
Expand Down
3 changes: 1 addition & 2 deletions src/OpenTelemetry/Metrics/MetricPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ namespace OpenTelemetry.Metrics;
/// </summary>
public struct MetricPoint
{
// TODO: Ask spec to define a default value for this.
private const int DefaultSimpleReservoirPoolSize = 10;
private const int DefaultSimpleReservoirPoolSize = 1;

private readonly AggregatorStore aggregatorStore;

Expand Down

0 comments on commit 6570696

Please sign in to comment.