We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcbff63 commit 0813ad8Copy full SHA for 0813ad8
opentelemetry-proto/src/transform/metrics.rs
@@ -223,8 +223,8 @@ pub mod tonic {
223
explicit_bounds: dp.bounds().collect(),
224
exemplars: dp.exemplars().map(Into::into).collect(),
225
flags: TonicDataPointFlags::default() as u32,
226
- min: dp.min.map(Numeric::into_f64),
227
- max: dp.max.map(Numeric::into_f64),
+ min: dp.min().map(Numeric::into_f64),
+ max: dp.max().map(Numeric::into_f64),
228
})
229
.collect(),
230
aggregation_temporality: TonicTemporality::from(hist.temporality()).into(),
0 commit comments