-
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
Otel Exponential Histogram Metrics are getting dropped while sending using Prometheusremotwrite exporter #34917
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
I believe this issue is similar to #33703, just for a different exporter. The problem is that OTLP Histograms don't translate well to Prometheus classic histogram. We might want to take a look in translating it to Prometheus Native Histograms instead, while keeping an eye into implications (e.g. Prometheus doesn't support Native Histograms in text format yet) |
Hello @ArthurSens , Thanks for your reply....But as per PR #17370 |
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. |
|
While the Prometheus Remote-Write Specification 1.0 does not mention native histograms, the data structures were added in Prometheus code two years ago, merged to main and released behind a feature flag. It does not need Remote-Write 2.0. |
Can someone explain why #17370, which at least in the title does what is asked for, is not working for OP ? |
My bad. I forgot we implemented that.
@Shindek77 are you seeing any errors logged, or are they dropped silently? |
@dashpole , on Opentelemetry side we was not getting any error but on vminsert of VictoriaMetrics we was getting error as below as it was not supporting Exponential Histogram Metrics type: |
Ah, you probably should follow along here then: VictoriaMetrics/VictoriaMetrics#3733. If you just want to silence the errors, you can filter out the metrics in question using the |
Component(s)
exporter/prometheusremotewrite
Describe the issue you're reporting
Actually, We are getting Metrics data which type is Exponential Histogram, But when we are trying to send that metric data to backend tools like Mimir, VictoriaMetrics etc using promtheusremotewrite exporter, It getting dropped even though as per one below issue and PR prometheusremotewriteexporter support conversion of OTel Exponential Histogram to Prometheus Native Histogram.
#17370
#16207
code:
Please let me know why they are not getting converted...is there parameter that I need to set??
The text was updated successfully, but these errors were encountered: