I wanted to set RecordMinMax=false to work around an issue we (GCP) have with how min and max are handled, but wasn't able to.
Describe the solution you'd like
Implement RecordMinMax for histogram and exponential histogram aggregations. See
It seems like they weren't added initially because they were optional at the time: #3938 (comment). Based on the specs above, they seem to be required now.
Oddly, it seems like declarative config somehow has a related parameter?
|
.withRecordMinMax(true))) |
. But I couldn't find it anywhere else. Either way, I assume this would be useful to support the
full declarative configuration spec.
I wanted to set
RecordMinMax=falseto work around an issue we (GCP) have with how min and max are handled, but wasn't able to.Describe the solution you'd like
Implement RecordMinMax for histogram and exponential histogram aggregations. See
It seems like they weren't added initially because they were optional at the time: #3938 (comment). Based on the specs above, they seem to be required now.
Oddly, it seems like declarative config somehow has a related parameter?
opentelemetry-java/sdk-extensions/incubator/src/test/java/io/opentelemetry/sdk/extension/incubator/fileconfig/DeclarativeConfigurationParseTest.java
Line 606 in 44aa060