-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Closed
Labels
Milestone
Description
In scrape/manager.go, there is a check preventing the use of both:
ConvertClassicHistogramsToNHCBEnabledEnableCreatedTimestampZeroIngestion
Lines 187 to 190 in d5cc5e2
| if scrapeConfig.ConvertClassicHistogramsToNHCBEnabled() && m.opts.EnableCreatedTimestampZeroIngestion { | |
| // TODO(krajorama): fix https://github.com/prometheus/prometheus/issues/15137 | |
| m.logger.Error("error reloading target set", "err", "cannot convert classic histograms to native histograms with custom buckets and ingest created timestamp zero samples at the same time due to https://github.com/prometheus/prometheus/issues/15137") | |
| continue |
However, the referenced issue #15137 is now closed, which might mean this limitation might no longer be relevant.
Action needed:
- Verify if the original problem described in CT, OM: no exemplars on first scrape for created timestamp compatible open metrics #15137 has been resolved.
- If so, remove this check to allow simultaneous use of both features.
- Add or update tests to confirm correct behavior when both options are enabled.
Reactions are currently unavailable