You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minimumExpectedValue is supposed to be inclusive with respect to buckets included in the histogram, but these test assertions show it's being treated as exclusive with regards to what is included in the bucket counts. I fear we have a bit of a mismatch here trying to use minimumExpectedValue for zeroThreshold because OTLP expectszeroThreshold to be inclusive of what ends up in the zeroCount.
// ZeroThreshold may be optionally set to convey the width of the zero
// region. Where the zero region is defined as the closed interval
// [-ZeroThreshold, ZeroThreshold].
Current Behaviour
Currently, zeroCount in the exponential histogram includes the minimum expected value. This in turn excludes the minimumExpectedValue from actual distribution.
Expected Behaviour
zeroCount should be exclusive of minimumExpectedValue
The text was updated successfully, but these errors were encountered:
minimumExpectedValue
is supposed to be inclusive with respect to buckets included in the histogram, but these test assertions show it's being treated as exclusive with regards to what is included in the bucket counts. I fear we have a bit of a mismatch here trying to useminimumExpectedValue
forzeroThreshold
because OTLP expectszeroThreshold
to be inclusive of what ends up in thezeroCount
.Originally posted by @shakuzen in #3959 (comment)
Current Behaviour
Currently,
zeroCount
in the exponential histogram includes the minimum expected value. This in turn excludes theminimumExpectedValue
from actual distribution.Expected Behaviour
zeroCount should be exclusive of
minimumExpectedValue
The text was updated successfully, but these errors were encountered: