File tree 2 files changed +10
-1
lines changed
opentelemetry/proto/metrics/v1
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ Full list of differences found in [this compare](https://github.com/open-telemet
14
14
15
15
### Added
16
16
17
- * Remove if no changes for this section before release.
17
+ * Introduce an optional ` zero_threshold ` field to ` ExponentialHistogramDataPoint ` .
18
+ [ (#440 )] ( https://github.com/open-telemetry/opentelemetry-proto/issues/440 )
18
19
19
20
### Removed
20
21
Original file line number Diff line number Diff line change @@ -561,6 +561,14 @@ message ExponentialHistogramDataPoint {
561
561
562
562
// max is the maximum value over (start_time, end_time].
563
563
optional double max = 13 ;
564
+
565
+ // ZeroThreshold may be optionally set to convey the width of the zero
566
+ // region. Where the zero region is defined as the closed interval
567
+ // [-ZeroThreshold, ZeroThreshold].
568
+ // When ZeroThreshold is unset or 0, zero count bucket stores
569
+ // values that cannot be expressed using the standard exponential formula as
570
+ // well as values that have been rounded to zero.
571
+ optional double zero_threshold = 14 ;
564
572
}
565
573
566
574
// SummaryDataPoint is a single data point in a timeseries that describes the
You can’t perform that action at this time.
0 commit comments