Skip to content

Commit

Permalink
Change the exponential histogram boundary condition (open-telemetry#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacd authored and VinozzZ committed Jun 21, 2024
1 parent b4c57d0 commit 21dc9dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opentelemetry/proto/metrics/v1/metrics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ message ExponentialHistogramDataPoint {
// base = (2^(2^-scale))
//
// The histogram bucket identified by `index`, a signed integer,
// contains values that are greater than or equal to (base^index) and
// less than (base^(index+1)).
// contains values that are greater than (base^index) and
// less than or equal to (base^(index+1)).
//
// The positive and negative ranges of the histogram are expressed
// separately. Negative values are mapped by their absolute value
Expand Down Expand Up @@ -572,7 +572,7 @@ message ExponentialHistogramDataPoint {

// Count is an array of counts, where count[i] carries the count
// of the bucket at index (offset+i). count[i] is the count of
// values greater than or equal to base^(offset+i) and less than
// values greater than base^(offset+i) and less or equal to than
// base^(offset+i+1).
//
// Note: By contrast, the explicit HistogramDataPoint uses
Expand Down

0 comments on commit 21dc9dc

Please sign in to comment.