Skip to content

Commit

Permalink
Remove optional part from zero_threshold (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdandrutu authored Mar 15, 2023
1 parent ff65814 commit 4b23e93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions opentelemetry/proto/metrics/v1/metrics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ message ExponentialHistogramDataPoint {
// ZeroThreshold may be optionally set to convey the width of the zero
// region. Where the zero region is defined as the closed interval
// [-ZeroThreshold, ZeroThreshold].
// When ZeroThreshold is unset or 0, zero count bucket stores
// values that cannot be expressed using the standard exponential formula as
// well as values that have been rounded to zero.
optional double zero_threshold = 14;
// When ZeroThreshold is 0, zero count bucket stores values that cannot be
// expressed using the standard exponential formula as well as values that
// have been rounded to zero.
double zero_threshold = 14;
}

// SummaryDataPoint is a single data point in a timeseries that describes the
Expand Down

0 comments on commit 4b23e93

Please sign in to comment.