Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update default value for simple exemplar reservoir
  • Loading branch information
utpilla committed Aug 25, 2023
commit cc16b65c48ff9e10e09b1a069b2181c0a05c64d9
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