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 Aug 19, 2022
1 parent 001e5ea commit 724e427
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 @@ -501,8 +501,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 @@ -538,7 +538,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 724e427

Please sign in to comment.