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 @@ -595,6 +595,14 @@ message ExponentialHistogramDataPoint {
595
595
596
596
// max is the maximum value over (start_time, end_time].
597
597
optional double max = 13 ;
598
+
599
+ // ZeroThreshold may be optionally set to convey the width of the zero
600
+ // region. Where the zero region is defined as the closed interval
601
+ // [-ZeroThreshold, ZeroThreshold].
602
+ // When ZeroThreshold is unset or 0, zero count bucket stores
603
+ // values that cannot be expressed using the standard exponential formula as
604
+ // well as values that have been rounded to zero.
605
+ optional double zero_threshold = 14 ;
598
606
}
599
607
600
608
// SummaryDataPoint is a single data point in a timeseries that describes the
You can’t perform that action at this time.
0 commit comments