Skip to content

Fix retries in prometheus.write.queue #4054

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

Merged
merged 1 commit into from
Jul 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Main (unreleased)

- Fix issues with `prometheus.exporter.windows` not propagating `dns` collector config. (@dehaansa)

- Fixed a bug in `prometheus.write.queue` which caused retries even when `max_retry_attempts` was set to `0`. (@ptodev)

v1.10.0
-----------------

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ require (
github.com/grafana/snowflake-prometheus-exporter v0.0.0-20250627131542-0c2feac3a700
github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27
github.com/hashicorp/consul/api v1.32.1
github.com/hashicorp/go-discover v1.1.0
github.com/hashicorp/go-multierror v1.1.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1346,8 +1346,8 @@ github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0 h1:bjh0PVYSVVFxzINqPF
github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0/go.mod h1:7t5XR+2IA8P2qggOAHTj/GCZfoLBle3OvNSYh1VkRBU=
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329 h1:Rs4H1yv2Abk3xE82qpyhMGGA8rswAOA0HQZde/BYkFo=
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329/go.mod h1:Z28219aViNlsLlPvuCnlgHDagRdZBAZ7JOnQg1b3eWg=
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4 h1:osKhTsqD4Kg9w+YVYL7gsNeIpft1ZrMRdN2VPNKqbhU=
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4/go.mod h1:uhuBvXxR2H4BStQrYrb8PPdG5nGWo9WUpOCzYUFZEqU=
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27 h1:Wb0TpBAxlHwgIZcDBhNqjwvdwz0vZzzGCIw35xFFleU=
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27/go.mod h1:uhuBvXxR2H4BStQrYrb8PPdG5nGWo9WUpOCzYUFZEqU=
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=
github.com/grobie/gomemcache v0.0.0-20230213081705-239240bbc445 h1:FlKQKUYPZ5yDCN248M3R7x8yu2E3yEZ0H7aLomE4EoE=
github.com/grobie/gomemcache v0.0.0-20230213081705-239240bbc445/go.mod h1:L69/dBlPQlWkcnU76WgcppK5e4rrxzQdi6LhLnK/ytA=
Expand Down
Loading