-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pkg/translator/prometheusremotewrite] Implement Exponential Histogram downscaling #17565
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
Pinging code owners for pkg/translator/prometheusremotewrite: @Aneurysm9. See Adding Labels via Comments if you do not have permissions to add labels yourself. |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
I've started to work on this. I will not introduce configuration to select the cutoff for downscaling (8), but I'll keep the code generic that it can be introduced later as needed. |
@krajorama thanks! I've assigned this issue to you. |
…prometheus (#24026) **Description:** Implement down-scaling of exponential histograms to Prometheus native histograms in Prometheus remote writer. Configuration of down-scaling is TBD. **Link to tracking Issue:** Fixes: #17565 **Testing:** Unit tests. **Documentation:** TBD --------- Signed-off-by: György Krajcsovits <[email protected]> Co-authored-by: Ruslan Kovalov <[email protected]> Co-authored-by: Juraci Paixão Kröhling <[email protected]> Co-authored-by: Anthony Mirabella <[email protected]>
Component(s)
pkg/translator/prometheusremotewrite
Is your feature request related to a problem? Please describe.
When converting the Exponential Histogram to Prometheus Native Histogram its data points will be dropped if their scale is not in the
[-4, 8]
range.Describe the solution you'd like
Exponential Histogram data points should be downscaled to a scale accepted by Prometheus (range [-4,8]) if its scale is greater than 8.
Describe alternatives you've considered
Exponential Histogram data points can be dropped if their scales are greater than 8.
Additional context
See comments in open-telemetry/opentelemetry-specification#3079
The text was updated successfully, but these errors were encountered: